@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300&display=swap');

.logo {
    font-family: 'Archivo', sans-serif;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}


.fs-15 {
    font-size: 0.9375rem;
}

.fw-500 {
    font-weight: 500;
}


.infscroll title {
    font-size: 22px;
    letter-spacing: -0.6px;
}

#fileTable td {
    max-width: 200px;
    /* Adjust the value as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scroll-box {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
  }

button span {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
button:hover span {
    transform: scale(1.2);
  }
input[type="checkbox"]:checked + label {
    background-color: #f0f8ff;
    border-radius: 4px;
    padding: 2px 4px;
  }

/* Adjust button widths to be the same */
.btn-primary,
.btn-success {
    width: 100px;
    /* Change the width as needed */
}


.custom-input {
    /* Add other styles as needed */
    width: 100%;
    /* Ensure the input takes up the full width of the container */
    margin-bottom: 10px;
}

.tabs {
   
    margin-bottom: 20px; /* Optional: Add margin at the bottom for spacing */
}



.tab-btn {
    padding: 10px;
    background-color: rgb(2, 117, 216); /* Set the background color to blue */
    color: white;
    border: none;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}


.form-content {
    display: inline-block; /* Ensure it's an inline block to center horizontally */
    /* Add any other specific styles for the form content */
}


.circle-navigation {
    display: flex;
    justify-content: space-around;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #007bff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.circle.dot-active {
    background-color: #ffcc00; /* or any other color for the active state */
}

.ui-autocomplete {
    max-height: 150px;
    overflow-y: auto;
    /* Add any other styling you want for the Autocomplete dropdown */
}

.ui-menu-item {
    list-style-type: none;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    /* Add any other styling you want for each Autocomplete item */
}


.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.quiz-container h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.question {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.question label {
    display: block;
    padding: 5px 0;
    cursor: pointer;
}

.question input[type="radio"] {
    margin-right: 10px;
}

.submit-button {
    text-align: center;
}

.submit-button button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button button:hover {
    background-color: #0056b3;
}


.custom-section {
    padding: 20px;
    margin: 20px auto; /* Center the section and adjust margins */
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 100%; /* Ensure the section doesn’t exceed the screen width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

  /* Custom styles for feature not available page */
  .feature-unavailable-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.feature-unavailable-buttons a.btn {
    min-width: 150px;
    margin: 0 5px;
    border: none;
    
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-unavailable-buttons a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Existing media query */
@media only screen and (max-width: 768px) {

    .infscroll h1 {
        font-size: 0.9375rem;
        letter-spacing: -0.0px;
    }

    .infscroll-author,
    .infscroll-date {
        font-size: 0.0123rem;
    }
}

/* Additional media query for better responsiveness */
@media only screen and (max-width: 600px) {
    .custom-section {
        padding: 10px; /* Reduce padding on smaller screens */
        margin: 10px;  /* Reduce margins on smaller screens */
    }
}