/* Styles for the accordion */

/* /style.css */

/* --- STYLES FOR SMART HEADER --- */

/* Language Switcher Dropdown */
#language-switcher .dropdown-content {
    /* Initially hidden, JS will toggle this */
    transition: all 0.3s ease;
}

/* Modal for Contribution Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}





.module-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.module-list > li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative; /* For positioning the tooltip */
}
.module-list > li:last-child {
     border-bottom: none;
}

.module-list > li > a {
    color: #007bff; /* Link color */
    text-decoration: none;
     display: block; /* Make the link take up the full width */
    padding-right: 20px; /* Space for the tooltip */
}

.module-list > li > a:hover {
    text-decoration: underline;
}

/* Tooltip styles */
.module-list > li::before {
    content: attr(data-description); /* Use the data-description attribute */
    position: absolute;
    top: 100%; /* Position below the list item */
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    z-index: 10;
    white-space: nowrap; /* Prevent text wrapping */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.2s ease;
    pointer-events: none; /* Prevent clicks on the tooltip */
}

.module-list > li:hover::before {
    opacity: 1; /* Show on hover */
}

.submodule-list {
    list-style: disc; /* Use standard bullet points for submodules */
     margin-left: 1.5rem; /* Indent submodules */
    padding-left: 1rem; /* Add some extra padding */
    margin-top: 0.5rem;
}
.submodule-list > li > a{
    color: #007bff;
    text-decoration: none;
}
.submodule-list>li{
	margin: 4px;
}
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #38a169;
    animation: spin 1s linear infinite;
}

    .audio-player {
      display: flex;
      max-width: 350px;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 12px;
      background-color: #f9f9f9;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      font-family: Arial, sans-serif;
    }
    
    .player-header {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .controls-top {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .thumbnail {
      width: 50px;
      height: 50px;
      border-radius: 6px;
      margin-right: 10px;
      object-fit: cover;
      border: 1px solid #ccc;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .download-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #4d7bac;
      text-decoration: none;
      font-size: 12px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #f0f3f7;
      border: 1px solid #d0d8e0;
      transition: all 0.2s ease;
    }
    
    .download-link:hover {
      background-color: #e0e7f0;
      color: #3a5e8c;
    }
   
    .led-display {
      background: linear-gradient(to bottom, #d0d8e0, #c0c9d8);
      border-radius: 6px;
      padding: 6px 8px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.8);
      position: relative;
      overflow: hidden;
      border: 1px solid #a3adb9;
      flex: 1;
      min-width: 0; /* Important for text overflow to work properly */
    }
    
    .led-display:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      pointer-events: none;
      border-radius: 7px 7px 0 0;
    }
    
    .filename-text {
      font-family: 'Courier New', monospace;
      color: #000000;
      font-size: 14px;
      text-align: left;
      white-space: nowrap;
      overflow: hidden;
      letter-spacing: 1px;
      margin: 0;
      padding: 3px 0;
    }
    
    .scrolling-text {
      display: inline-block;
      animation: scroll-text 10s linear infinite;
      animation-play-state: paused;
      padding-right: 20px;
    }
    
    .scrolling .scrolling-text {
      animation-play-state: running;
    }
    
    @keyframes scroll-text {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
   
    .player-controls {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 6px;
    }
   
    .play-btn {
      background: linear-gradient(to bottom, #55b559, #4CAF50);
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
   
    .play-btn:hover {
      background: linear-gradient(to bottom, #4CAF50, #45a049);
    }
   
    .time-display {
      font-size: 14px;
      color: #555;
      font-weight: bold;
    }
   
    .progress-container {
      width: 100%;
      height: 8px;
      background-color: #ddd;
      border-radius: 4px;
      margin: 8px 0;
      cursor: pointer;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
      overflow: hidden;
    }
   
    .progress-bar {
      height: 100%;
      background: linear-gradient(to right, #4CAF50, #7dde81);
      border-radius: 4px;
      width: 0%;
      transition: width 0.1s ease;
    }
    
    .time-display {
      font-size: 12px;
      color: #555;
      font-weight: bold;
    }

    .color-panel {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .color-panel:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .color-panel .icon-bg {
      position: absolute;
      right: -10px;
      bottom: -10px;
      width: 120px;
      height: 120px;
      opacity: 0.15;
      pointer-events: none;
    }
    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
    }
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }




@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200%.0; }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom active tab styles */
.tab-active {
    color: #d8681d; /* Orange active tab color */
    border-bottom: 3px solid #d8681d;
    font-weight: 600;
}

body {
    font-family: sans-serif;
    margin: 20px;
    }
    h1 {
    text-align: left;
    margin-bottom: 30px;
    }
    .item-container {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .item-container h2 {
    margin-top: 0;
    color: #333;
    }
    .item-container h3 {
    margin-top: 10px;
    color: #555;
    }
    .item-container p, .item-container ul, .item-container ol {
    line-height: 1.6;
    }
    .item-container ul, .item-container ol {
    padding-left: 20px;
    }

    .header {
    display: flex;
    align-items: center; /* Aligns items vertically centered */
    padding: 10px;       /* Adjust as needed */
    }

    .logo {
    margin-right: 20px;  /* Creates spacing between logo and breadcrumbs */
    }

    .breadcrumbs ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    }

    .breadcrumbs li + li::before {
    content: ">>";
    margin: 0 10px;
    color: #ffffff;         /* Change color as desired */
    }

/* Print styles */
@media print {
    header, footer, #back-to-top, .no-print, .tabs-container {
        display: none !important;
    }

    .milestone-item {
        break-inside: avoid;
        margin-bottom: 1rem;
        border: 1px solid #E5E7EB;
        page-break-inside: avoid;
    }
    
    .add-milestone, .remove-milestone, .add-metric, .remove-metric {
        display: none;
    }

    .tab-content {
        display: block !important;
        opacity: 1 !important;
    }

    body, .container {
        margin: 0;
        padding: 0;
    }

    .bg-white {
        background-color: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .faq-question {
        break-after: avoid;
    }

    a {
        text-decoration: none !important;
        color: black !important;
    }
}

    .main-nav {
        display: flex;
        flex-direction: column;
    }

    .nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    }

    .nav-item {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 15px;
    border: 2px dotted hsl(0, 0%, 25%);
    border-radius: 5px;
    }

    .nav-item:hover {
    border: 2px solid #14010b;

    }

    .icon-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    }

    .icon-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    }

    .icon-nav-item::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 5px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
    }
    
    footer {
        width: 100%;
      }
      

    

    .modules-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 20px;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    /* Ensure module lists take full width of their grid cell */
    .module-list {
        width: 100%;
        margin: 0;
    }

    /* Media queries for responsive layout */
    @media (max-width: 600px) {
        .modules-container {
            grid-template-columns: 1fr;
        }
    }
    
    @media (min-width: 601px) and (max-width: 900px) {
        .modules-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 901px) and (max-width: 1200px) {
        .modules-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 1201px) {
        .modules-container {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* Main container positioning */
    .module-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        z-index: 1;
        }

        @media (min-width: 1024px) {
        .module-grid {
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
        }
        }

        /* Common styling for all module cards */
        .module-card {
        position: relative;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        overflow: hidden;
        z-index: 2;
        height: 100%;
        }

        /* Semi-transparent overlay for readability */
        .module-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(243, 244, 246, 0.85);
        z-index: -1;
        }

        /* Background positioning for each module card */
        .module-card {
        background-image: url('/assets/14-15th-century-water_filter.webp');
        background-size: 1100px 750px; /* Size to cover the entire grid */
        background-repeat: no-repeat;
        }

        /* First row, first column */
        .module-card:nth-child(1) {
        background-position: 0% 0%;
        }

        /* First row, second column */
        .module-card:nth-child(2) {
        background-position: 50% 0%;
        }

        /* First row, third column (or second row, first column in mobile) */
        .module-card:nth-child(3) {
        background-position: 100% 0%;
        }

        /* Second row, first column (or second row, second column in mobile) */
        .module-card:nth-child(4) {
        background-position: 0% 100%;
        }

        /* Second row, second column (or third row, first column in mobile) */
        .module-card:nth-child(5) {
        background-position: 50% 100%;
        }

        /* Second row, third column (or third row, second column in mobile) */
        .module-card:nth-child(6) {
        background-position: 100% 100%;
        }

        /* Content positioning */
        .module-card h3, 
        .module-card p, 
        .module-card button,
        .module-card ul {
        position: relative;
        z-index: 3;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 1023px) {
        .module-card:nth-child(3) {
            background-position: 100% 33%;
        }
        
        .module-card:nth-child(4) {
            background-position: 0% 66%;
        }
        
        .module-card:nth-child(5) {
            background-position: 50% 66%;
        }
        
        .module-card:nth-child(6) {
            background-position: 100% 66%;
        }
        }


    .icon-nav-item:hover::before {
    opacity: 1; /* Show icon on hover */
}

    .icon-nav-item span {
    font-size: 0.8em;
    display: none; /* Initially hidden */
}

    .icon-nav-item:hover span {
    display: block; /* Show text on hover */
}

    .icon-nav-item{
    font-size: 0.8em;
}


.milestone-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.milestone-item input[type="text"],
.milestone-item textarea,
.milestone-item select {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.milestone-item button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.metrics-display {
    margin-top: 10px;
}

.metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.icon-button {
    transition: transform 0.3s ease, opacity 0.3s ease; /* Add transitions */
  }
  
  .icon-button.animate {
    transform: scale(1.2); /* Initial scale (larger) */
    opacity: 0;          /* Initial opacity (invisible) */
    animation: fadeInScaleDown 1s forwards; /* Apply animation */
  }
  
  @keyframes fadeInScaleDown {
    to {
      transform: scale(1); /* Final scale (normal size) */
      opacity: 1;          /* Final opacity (fully visible) */
    }
  }

.remove-metric {
    margin-left: 10px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    padding: 3px 7px;
}


/* Milestone Page Specific Styles */
.milestone-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.milestone-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Status colors */
.milestone-status option[value="not-started"] {
    color: #F59E0B; /* Amber */
}

.milestone-status option[value="in-progress"] {
    color: #3B82F6; /* Blue */
}

.milestone-status option[value="completed"] {
    color: #10B981; /* Emerald */
}


.module-list > li > a { /* Targets top-tier links directly within .module-list */
    font-weight: bold;
    font-size: 1.2em;
    color: #007bff; /* Example color */
    margin: 1.5em 0; /* Example spacing */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    }
    .module-list > li > a:hover {
    background-color: #f0f0f5; /* Example hover background color */
    text-decoration: underline;
    }
    .submodule-list li a {
    color: #333; /* Example color */
    padding-left: 20px; /* Example indentation */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
    }
    .submodule-list li a:hover {
    color: #007bff; /* Example hover color */
    text-decoration: underline;
    }



/* Status badge styles */
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.status-badge.not-started {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-badge.in-progress {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.status-badge.completed {
    background-color: #D1FAE5;
    color: #065F46;
}

/* Metric item animations */
.metric-item {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar styles */
.progress-container {
    width: 100%;
    background-color: #E5E7EB;
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.progress-bar.not-started {
    background-color: #F59E0B;
    width: 10%;
}

.progress-bar.in-progress {
    background-color: #3B82F6;
    width: 50%;
}

.progress-bar.completed {
    background-color: #10B981;
    width: 100%;
}

/* Button hover effects */
.add-metric:hover, .remove-milestone:hover {
    transform: translateY(-1px);
}

/* Focus styles for better accessibility */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}


/* Enhanced Milestone Page Styles */

/* Status-based styling for milestone cards */
.milestone-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 5px solid #e5e7eb; /* Default border */
    position: relative;
}

.milestone-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Status-specific styles */
.milestone-item.status-not-started {
    border-left-color: #F59E0B; /* Amber */
}

.milestone-item.status-in-progress {
    border-left-color: #3B82F6; /* Blue */
}

.milestone-item.status-completed {
    border-left-color: #10B981; /* Green */
}

/* Status badge styles */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 0.75rem;
}

.status-badge.not-started {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-badge.in-progress {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.status-badge.completed {
    background-color: #D1FAE5;
    color: #065F46;
}

/* Due date indicator styles */
.due-date-indicator {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.due-date-indicator.overdue {
    color: #EF4444; /* Red */
    font-weight: 700;
}

.due-date-indicator.due-soon {
    color: #F59E0B; /* Amber */
}

.due-date-indicator.due-future {
    color: #6B7280; /* Gray */
}

/* Progress bar styles */
.progress-container {
    width: 100%;
    background-color: #E5E7EB;
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.progress-bar.not-started {
    background-color: #F59E0B;
    width: 5%;
}

.progress-bar.in-progress {
    background-color: #3B82F6;
    width: 50%;
}

.progress-bar.completed {
    background-color: #10B981;
    width: 100%;
}

/* Sorting controls */
.milestone-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.sort-controls {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.sort-controls label {
    margin-right: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
}

/* Enhanced metric styling */
.metrics-display {
    margin-top: 0.75rem;
}

.metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F9FAFB;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    border: 1px solid #E5E7EB;
}

.metric-content {
    flex: 1;
}

.metric-name {
    font-weight: 600;
    color: #374151;
}

.metric-value {
    font-weight: 500;
    color: #111827;
}

.metric-unit {
    color: #6B7280;
}

.remove-metric {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #EF4444;
    color: white;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.2s;
}

.remove-metric:hover {
    background-color: #DC2626;
}

/* Animation for adding metrics */
@keyframes metricAdded {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-added {
    animation: metricAdded 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .milestone-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-controls {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .sort-controls select {
        width: 100%;
    }
}

/* Focus styles for accessibility */
button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}



.item-container {
border: 1px solid #ddd;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.item-container h2 {
margin-top: 0;
color: #333;
}
.item-container h3 {
margin-top: 10px;
color: #555;
}
.item-container p, .item-container ul, .item-container ol {
line-height: 1.6;
}
.item-container ul, .item-container ol {
padding-left: 20px;
}

.header {
display: flex;
align-items: center; /* Aligns items vertically centered */
padding: 10px;       /* Adjust as needed */
}

.logo {
margin-right: 20px;  /* Creates spacing between logo and breadcrumbs */
}

.breadcrumbs ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}

.breadcrumbs li + li::before {
content: ">>";
margin: 0 10px;
color: #ffffff;         /* Change color as desired */
}

.centered-container {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
padding: 20px; /* Optional padding for visual spacing */
}

.icon-text-container {
display: flex;
align-items: center; /* Align items vertically within the container */
padding: 10px 15px; /* Padding for the rounded box */
border-radius: 8px; /* Rounded corners */
}

.centered-icon {
width: 64px;
height: 64px;
margin-right: 10px; /* Space between icon and text */
}

.text-label {
font-size: 1.25rem; /* Tailwind text-xl equivalent, adjust as needed */
font-weight: bold;
white-space: nowrap; /* Prevent text wrapping */
}
