/* Body styling */
body {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Cascadia Code', monospace;
    color: #ffffff00;
    background-color: #c6d0da;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Top bar styling */
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 20px;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    height: 40px;
    cursor: pointer;
    font-weight: 700;
    margin-top: -4px;
}

.logo:before {
    content: 'timerite';
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: rgb(0, 0, 0);
    display: block;
    line-height: 40px;
}

/* About Link Styling */
.about {
    font-size: 1.2em;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: right;
    margin-right: 40px;
}

/* Main container styling */
.container {
    background: rgba(255, 255, 255, 0.197);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 25px;
    overflow: hidden;
    max-width: 1000px;
    width: 90%;
    margin: 80px 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}

/* Heading styling */
h1 {
    font-size: 250%;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.288);
    color: #000000;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgb(255, 255, 255);
}

@media (max-width: 768px) {
    h1 {
        font-size: 200%;
    }
}
/* Countdown section styling */
.countdown-section {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2em;
    color: #000000;
    text-align: left;
    font-family: 'Cascadia Code', monospace;
}

.countdown-section:last-child {
    border-bottom: none;
}

.countdown-section:hover {
    background: rgb(255, 255, 255);
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 14px;
}

/* Deadline info styling */
.deadline-info {
    color: #000000;
    font-size: 1.1em;
    margin: 10px 0;
}

/* Timer styling */
.timer {
    font-size: 1.2em;
    font-weight: bold;
    color: #243805;
    margin: 10px 0;
    padding: 10px;
    background: rgba(39, 189, 19, 0.192);
    border-radius: 5px;
}

.timer.passed {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

/* Week section styling */
.countdown-section h2 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.info-box {
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
    margin: 10px 0;
}

.info-box ul {
    margin: 10px 0;
    color: #000000;
    padding: 30px;
}

.info-box p {
    margin: 10px 0;
    color: #000000;
}

.info-box strong {
    color: #000000;
}

.formula {
    padding: 20px 0;
    text-align: center;
    overflow-x: auto;
    margin: 15px -20px;
}

.info-box small {
    color: #000000;
    font-style: italic;
}

/* Bonus marks section styling */
.important-note {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-left: 4px solid #ff9800;
    margin: 15px 0;
    border-radius: 0 20px 20px 0;
}

.info-box ol {
    margin: 10px 0;
    padding-left: 20px;
    color: #000000;
}

.info-box ol li {
    margin-bottom: 15px;
}

.info-box ol li ul {
    margin-top: 5px;
}

/* Mobile responsive styling */


.activity-deadlines h3 {
    color: #333;
    margin: 20px 0 10px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-deadlines h3:first-child {
    border-top: none;
    padding-top: 0;
}

.activity-deadlines .deadline-info {
    font-size: 0.9em;
    margin: 5px 0;
}

/* Modern Table Styling */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
    padding: 5px;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.grade-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    margin: 0;
    font-size: 0.95em;
}

.grade-table th {
    background: #f5f5f5;
    color: #333333;
    font-weight: 600;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    border: 1px solid #ddd;
}

.grade-table td {
    padding: 15px;
    border: 1px solid #84848443;
    color: #2c3e50;
}

.grade-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.7);
}

.grade-table tr:nth-child(odd) {
    background-color: rgba(245, 247, 250, 0.7);
}

.grade-table tr:hover {
    background-color: rgba(245, 247, 250, 0.9);
}

.grade-table td:nth-child(3) {
    font-weight: 600;
    color: #e74c3c;
}

.grade-table td:nth-child(4) {
    font-weight: 600;
    color: #0d2332;
}

.grade-calculator:hover {
    background: #8d88df;
}


.score-distribution {
    transition: background-color 0.3s;
}

.score-distribution:hover {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

/* Button styles for the grade calculator */
.calculator-box button {
    width: 100%;
    background-color: #10263e;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 1.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.calculator-box button:hover {
    background-color: #000d1c;
    transform: scale(1.02);
}

.calculator-box button:active {
    background-color: #10243b;
}

.floating-countdown {
    position: fixed; /* Keep it fixed */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center alignment */
    font-size: 38em; /* Large font size */
    color: rgba(255, 255, 255, 0.425); /* Semi-transparent color */
    text-align: center;
    z-index: 0; /* Set lower z-index to place it behind other content */
    pointer-events: none; /* Allow clicks to pass through */
    font-family: 'Roboto', sans-serif; /* Use Roboto font */
    font-weight: bold; /* Bold text */
    white-space: nowrap; /* Prevent line breaks */
}

.floating-countdown span {
    display: inline; /* Keep spans inline */
    margin: 0 5px; /* Add some space between elements */
}

/* Mobile view adjustments for the floating countdown */


.eligibility-box:hover {
    background-color: rgba(202, 225, 233, 0.459);
}

/* Score Calculation Styles */
.score-calculation-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.formula-section {
    margin-bottom: 20px;
}

.latex-formula {
    margin: 15px 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.formula-note {
    color: #495057;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #6c757d;
}

.formula-notes {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.note-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item i {
    color: #28a745;
}

.note-item.important {
    color: #dc3545;
    font-weight: 600;
}

.note-item.important i {
    color: #dc3545;
}

/* Grade Calculator Styles */
.calculator-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.calculator-box {
    margin: 20px 0;
    padding: 25px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
    font-family: Arial, sans-serif;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #213c59;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.calculator-box button {
    width: 100%;
    background-color: #132d4a;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 1.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.result-box {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
    max-width: 400px;
    margin-top: 20px;
    flex-shrink: 0;
}

.result-box ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.result-box ul li {
    margin-bottom: 8px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .calculator-box,
    .result-box {
        width: 90%;
    }

    .calculator-box button {
        font-size: 1em;
        padding: 10px;
    }

    .input-group input {
        font-size: 0.9em;
        padding: 8px;
    }
}

/* Assessment Table Styling */
.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.assessment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    font-family: Arial, sans-serif;
    padding: 10px;
}

.assessment-table th {
    background-color: #182f48;
    color: white;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.assessment-table th:first-child {
    border-top-left-radius: 8px;
}

.assessment-table th:last-child {
    border-top-right-radius: 8px;
}

.assessment-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.assessment-table tr:last-child td {
    border-bottom: none;
}

.assessment-table tbody tr {
    transition: background-color 0.3s;
}

.assessment-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.assessment-table td em {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
}

.assessment-table td:first-child {
    font-weight: 600;
    color: #182f48;
    border-left: none;
    background: linear-gradient(to right, #182f48 4px, transparent 4px);
}

/* Highlight important cells */
.assessment-table td:last-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Mobile responsiveness */

/* Add zebra striping for better readability */
.assessment-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Summary Table Styling */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    padding: 0px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 0.9em;
    border-radius: 8px;
    overflow: hidden;
}

.summary-table th {
    background-color: #0f0a26;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #071424;
}

.summary-table td {
    border-bottom: 1px solid #e9ecef;
    color: #212529;
    vertical-align: top;
    line-height: 1.4;
}

.summary-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.summary-table tr:hover {
    background-color: #e2e6ea;
}

.summary-table .total-row {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Grid Table Styling */
.grid-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 0.9em;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.grid-table th {
    background-color: #0f0a26;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #071424;
}

.grid-table td {
    border-bottom: 1px solid #e9ecef;
    color: #212529;
    vertical-align: top;
    line-height: 1.4;
}

.grid-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.grid-table tr:hover {
    background-color: #e2e6ea;
}

/* Assessment Table Styling */
.assessment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 0.9em;
    border-radius: 8px;
    overflow: hidden;
}

.assessment-table th {
    background-color: #0f0a26;
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #071424;
}

.assessment-table td {
    border-bottom: 1px solid #e9ecef;
    color: #212529;
    vertical-align: top;
    line-height: 1.4;
}

.assessment-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.assessment-table tr:hover {
    background-color: #e2e6ea;
}

/* Formula Section Styling */
.formula-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.formula-item {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.latex-formula {
    margin: 15px 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.formula-note {
    color: #495057;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #6c757d;
}

.formula-notes {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.note-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item i {
    color: #28a745;
}

.note-item.important {
    color: #dc3545;
    font-weight: 600;
}

.note-item.important i {
    color: #dc3545;
}

/* Score Distribution Styling */
.score-distribution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.score-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 4px solid #0f0a26;
    text-align: center;
    transition: transform 0.2s;
}

.score-card:hover {
    transform: translateY(-5px);
}

.score-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.score-header i {
    color: #0f0a26;
}

.score-value {
    font-size: 2.5em;
    font-weight: 700;
    color: #0f0a26;
    margin: 10px 0;
    position: relative;
}

.score-value::after {
    content: '%';
    font-size: 0.4em;
    position: absolute;
    bottom: 5px;
    margin-left: 5px;
    color: #666;
}

.score-detail {
    color: #495057;
    margin: 10px 0;
    font-size: 0.9em;
}

.score-note {
    color: #666;
    font-size: 0.85em;
    font-style: italic;
}

.total-score {
    background: #0f0a26;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.total-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

/* Calculator and Result Box Styling */
.calculator-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.calculator-box {
    margin: 20px 0;
    padding: 25px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #213c59;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.calculator-box button {
    width: 100%;
    background-color: #132d4a;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 1.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.result-box {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
    max-width: 400px;
    margin-top: 20px;
    flex-shrink: 0;
}

.result-box ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.result-box ul li {
    margin-bottom: 8px;
}
.summary-table th,
.summary-table td,
.grid-table th,
.grid-table td,
.assessment-table th,
.assessment-table td {
    padding: 8px;
}
/* Mobile view adjustments */
@media (max-width: 768px) {
    .summary-table,
    .grid-table,
    .assessment-table {
        font-size: 0.8em;
    }

    .summary-table th,
    .summary-table td,
    .grid-table th,
    .grid-table td,
    .assessment-table th,
    .assessment-table td {
        padding: 8px;
    }

    .formula-section {
        padding: 15px;
    }

    .latex-formula {
        font-size: 0.9em;
    }

    .score-distribution {
        grid-template-columns: 1fr;
    }

    .score-card {
        padding: 15px;
    }

    .score-value {
        font-size: 2em;
    }

    .calculator-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .calculator-box,
    .result-box {
        width: 90%;
    }

    .calculator-box button {
        font-size: 1em;
        padding: 10px;
    }

    .input-group input {
        font-size: 0.9em;
        padding: 8px;
    }
}

/* Styling for the NPPE Schedule Table */
.nppe-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* To ensure the border-radius is applied to the background */
}

.nppe-schedule-table th,
.nppe-schedule-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.nppe-schedule-table th {
    background-color: #182f48; /* Dark blue header */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nppe-schedule-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Light grey for even rows */
}

.nppe-schedule-table tbody tr:hover {
    background-color: #e0e0e0; /* Slightly darker grey on hover */
}

.nppe-schedule-table td {
    font-size: 0.95em;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
}
.faq-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 16px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 
                0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease-in-out, 
                transform 0.2s ease-in-out;
    border: 0px solid rgba(0, 0, 0, 0.12);
}
.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 
                0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    background-color: #1a738326;
}
.faq-item h3 {
    color: #092549; /* Google Blue */
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 1.5;
    position: relative;
    padding-left: 28px;
    font-weight: 800;
    align-items: center;
}


.faq-item ul {
    margin: 8px 0;
    padding-left: 24px;
    list-style: none;
}

.faq-item ul li {
    margin-bottom: 12px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.87);
    position: relative;
    padding-left: 24px;
}


.faq-item ul ul {
    margin: 8px 0 8px 16px;
}
.faq-item ul ul li::before {
    background-color: #34a853; /* Google Green */
}
.faq-item p {
    margin: 16px 0;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.87);
    font-size: 0.96em;
    padding-left: 30px;
}

.faq-item {
    position: relative;
    overflow: hidden;
}
.faq-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(26, 115, 232, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.faq-item:focus::after {
    animation: ripple 1s ease-out;
}
@media (max-width: 768px) {
    /* Other mobile styles */

    .formula {
        margin: 15px -10px; /* Reduce margin for smaller screens */
    }

    .formula-section {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .latex-formula {
        font-size: 0.9em; /* Slightly reduce font size */
        overflow-x: auto; /* Allow horizontal scrolling for formulas */
        width: 100%; /* Ensure formula takes full container width */
    }
    .body {
        font-size: 12px; /* Reduce font size for smaller screens */
    }
    .container {
        font-size: 14px; /* Reduce font size for smaller screens */
        width: 100%;
        backdrop-filter: blur(7px);
    }
    .formula-section {
        font-size: 17px; /* Reduce font size for smaller screens */
        padding-left: 14px; /* Reduce padding for smaller screens */
        width: 90%;
    }
    .faq-container {
        font-size: 17px; /* Reduce font size for smaller screens */
        width: 100%;
        padding: 0px;
    }
    .latex-formula {
        width: 90%;
    }
    .top-bar {
        background-color: #ced6dfb3;
        backdrop-filter: blur(150px)
    }
    
}
