/* General body styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Header styles */
header {
    background-color: #494949;
    color: #fff;
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Space between logo and right section */
    padding: 10px 20px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Allow items to wrap */
    z-index: 10; /* Ensure the header stays on top of the sidebar */
    position: fixed; /* Make header fixed to the top */
    top: 0; /* Position it at the top */
    left: 0; /* Make sure it starts at the left edge */
    width: 100%; /* Ensure it spans the entire width */
    padding-top: 10px; /* Adjust padding to compensate for fixed position */
}

/* Logo section */
.logo {
    flex: 0 0 auto; /* Keep logo fixed on the left */
}

.logo img {
    height: 40px;
}

/* User details and logout button */
.nav-right {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-end; /* Align to the right */
    gap: 5px; /* Space between user info and logout button */
}

/* User info section */
.user-info {
    display: flex;
    flex-direction: column; /* Stack welcome message and role vertically */
    align-items: flex-end; /* Align text to the right */
}

.welcome-message {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.role {
    font-size: 12px;
    color: #ddd;
    margin: 0;
}

/* Logout button */
.logout-button {
    background-color: #fff;
    color: #494949;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
}

.logout-button:hover {
    background-color: #9c9c9c;
    color: #fff;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 10px;
    z-index: 10; /* Ensure footer stays below sidebar */
}


/* Sidebar Styles */
.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 60px; /* Push below the header */
    left: -250px; /* Initially hidden */
    background-color: #494949;
    color: #fff;
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out; /* Smooth transitions */
    z-index: 9; /* Ensure it sits below the header */
}

/* Sidebar when open */
.sidebar.open {
    left: 0;
    width: 80%;
}

/* Sidebar Content */
.sidebar ul {
    list-style-type: none;
    padding: 0;
    cursor: pointer; 
}

.menu-header {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px;
}

.submenu li {
    margin: 10px 0;
    cursor: pointer; 
}

/* Close button (rotates when sidebar toggles) */
.close-btn {
    background-color: #494949;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 11; /* Ensure above sidebar content */
    transition: transform 0.3s ease-in-out; /* Smooth rotation */
}

/* Rotation for the close button */
.close-btn.rotate {
    transform: rotate(90deg); /* Rotate 90 degrees */
}

.close-btn:hover {
    background-color: #fff;
    color: #9c9c9c;
}

/* Main Content Area */
.main-content {
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px 20px 20px; /* Add top padding to account for fixed header */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    min-height: calc(100vh - 60px - 40px); /* Ensure it fills viewport minus header/footer */
    box-sizing: border-box;
}

/* Collapsible Button */
.open-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #494949;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 11; /* Ensure it's above the header */
}

.open-btn:hover {
    background-color: #fff;
    color: #9c9c9c;
}

/* Responsive - Mobile view */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-content {
        margin-left: 60px;
        margin-top: 20px;
        margin-bottom: 100px;
        margin-right: 5px;
    }

    .logo {
        flex: 1;
    }

    .nav-right {
        flex: 2; /* Give nav-right more space */
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Align content to the right */
        text-align: right;
        width: 100%;
    }

    .user-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        width: 100%;
    }

    .welcome-message {
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap; /* Prevents breaking into two lines */
        font-size: 14px;
        width: 100%;
    }

    .status-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: green; /* Adjust status color */
    }

    .role {
        font-size: 12px;
        font-weight: bold;
    }

    .logout-button {
        width: auto;
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Small screen (mobile portrait) */
@media (max-width: 480px) {
    .nav-right {
        width: 100%;
        align-items: flex-end;
    }

    .welcome-message {
        font-size: 12px;
        width: auto;
    }

    .logout-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Dropdown Styling */
select {
    background-color: #fff;
    border: 2px solid #494949;
    color: #333;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%; /* Make dropdowns full-width */
    box-sizing: border-box; /* Include padding and border in width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #494949; /* Border color stays the same */
    box-shadow: 0 0 5px rgba(178, 36, 89, 0.5); /* Add subtle focus shadow */
}

select option {
    padding: 8px;
    font-size: 14px;
}

/* Button Styling */
button {
    background-color: #494949;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* Ensure button aligns well */
    margin-top: 10px; /* Give some space between button and content */
}

button:hover {
    background-color: #9c9c9c; /* Darken the button color on hover */
    transform: translateY(-2px); /* Subtle button lift effect */
}

button:active {
    transform: translateY(1px); /* Button presses down when clicked */
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Label Styling */
label {
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 5px;
}

/* Submenu Styling for dropdowns and buttons */
.submenu-detail li {
    font-size: 12px;
    margin-bottom: 10px;
}

.submenu-detail li select,
.submenu-detail li button {
    width: 80%; /* Ensure form elements align properly */
    padding: 5px 8px;
}

/* Ensure there's space between elements */
.submenu-header {
    font-size: 14px;
    color: #ffffff;
    margin: 20px 0 10px;
}

/* Styling for date input fields */
ul.submenu-detail li input[type="date"] {
    width: 80%; /* Full width */
    padding: 6px; /* Inner padding for better usability */
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    background-color: #f9f9f9; /* Slight background color */
    font-size: 12px; /* Font size */
    color: #333; /* Text color */
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Focus state for inputs */
ul.submenu-detail li input[type="date"]:focus {
    border-color: #007BFF; /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Soft glow */
    outline: none; /* Remove default outline */
    background-color: #fff; /* Brighten background */
}

/* Add spacing between the date fields */
ul.submenu-detail li input[type="date"]:not(:last-child) {
    margin-bottom: 15px; /* Space below the first field */
}

.submenu-header a {
    font-size: 14px;
    color: #ffffff;
    margin: 20px 0 10px;
    text-decoration: none; /* Removes underline */
}

.main-content {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
}

/* Dashboard Container */
.dashboard-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Programme Box */
.programme-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Two-column grid */
    grid-template-rows: auto auto auto; /* Stack rows on top of each other */
    gap: 15px;
    align-items: start;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 15px;
}

/* Programme Name */
.programme-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 400px;
}

/* Status Summary (Offered, Confirmed, Complete in one row) */
.status-summary {
    display: flex;
    align-items: center; 
    gap: 15px; /* Increased gap for better spacing */
    font-size: 14px;
    font-weight: 500;
    color: #555;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Individual status item container */
.status-item {
    display: flex;
    align-items: center;
    gap: 6px; /* Space between indicator and text */
}

/* Total Sessions and Completed Below Programme Title */
.total-sessions {
    font-size: 16px;
    font-weight: 500;
    color: #7f8c8d;
    width: 250px;
}

/* Progress Percentage - Below the Status Summary */
.progress {
    font-size: 18px;
    font-weight: bold;
    color: #636363;
    text-align: left; /* Center progress below the status summary */
    margin-top: 10px; /* Slight space between status summary and progress */
}

/* Responsive Design */
@media (max-width: 768px) {
    .programme-box {
        grid-template-columns: 1fr; /* Stack elements on mobile */
        text-align: center;
        padding: 15px;
    }

    .total-sessions {
        text-align: left; /* Align total sessions to left */
    }

    .status-summary {
        justify-content: center;
        gap: 10px;
    }

    .progress {
        text-align: center; /* Center progress on mobile */
    }

    .programme-title {
        text-align: center;
        white-space: normal;
    }
}

.tooltip {
    position: relative;
    cursor: pointer;
 }
 
 .school-list {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #eaeaea;
    padding: 12px;
    border-radius: 6px;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    max-width: 300px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
 }
 
 .tooltip:hover .school-list {
    opacity: 1;
    visibility: visible;
 }
 
 .school-list div {
    padding: 4px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.3;
 }
 
 .school-list div:last-child {
    border-bottom: none;
 }
 
 /* Scrollbar styling for tooltip */
 .school-list::-webkit-scrollbar {
    width: 6px;
 }
 
 .school-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
 }
 
 .school-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
 }
 
 .school-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
 }

.progress-container {
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px; /* Add space between the title and the progress */
    width: 250px;
}

.progress-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.progress {
    font-size: 18px;
    font-weight: bold;
    color: #636363;
}

.dashboard-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px; /* Add space below the title */
    text-align: center;
}

.live-indicator {
    display: inline-block;
    width: 10px;  /* Adjust size */
    height: 10px; /* Adjust size */
    background-color: green;
    border-radius: 50%; /* Makes it a circle */
    margin-right: 8px; /* Spacing between circle and text */
    vertical-align: middle; /* Aligns with text */
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between bar and percentage */
}

.progress-bar {
    margin-top: 10px;
    width: 100px;  /* Adjust width as needed */
    height: 10px;
    background-color: #ff4d4d; /* Red for remaining */
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: #4caf50; /* Green for completed */
    transition: width 0.5s ease-in-out;
}

.progress {
    font-size: 14px;
    font-weight: bold;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgb(0, 175, 0);
    border-radius: 50%;
    margin-right: 8px; /* Space between circle and text */
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.8); /* Initial glow */
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px rgba(0, 128, 0, 0.8);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
        box-shadow: 0 0 10px rgba(0, 128, 0, 1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px rgba(0, 128, 0, 0.8);
    }
}


.menu-header a {
    color: inherit; /* Inherit color from parent element (white in this case) */
    text-decoration: none; /* Remove the default underline */
}

/* Optional: Add hover effect to the link for better user experience */
.menu-header a:hover {
    color: white; /* Make sure the text stays white when hovered */
}

/* Styling for the glowing badge */
.badge-glow {
    background-color: #ffffff;
    color: black;
    font-weight: bold;
    border-radius: 12px;
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 0.8rem;
    animation: glowPulse 1.5s infinite;
    box-shadow: 0 0 5px white, 0 0 10px white;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px white, 0 0 10px white; }
    50% { box-shadow: 0 0 10px white, 0 0 20px white; }
    100% { box-shadow: 0 0 5px white, 0 0 10px white; }
}

.mean-utilisation {
    display: flex;
    align-items: right;
    gap: 8px;
    margin-top: 10px;
    margin-left: 300px;
  }
  
  .rag-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  
  .rag-dot.green {
    background-color: #4ac96a;
    box-shadow: 0 0 8px 2px rgba(74, 201, 106, 0.6);
  }
  
  .rag-dot.red {
    background-color: #c94a72;
    box-shadow: 0 0 8px 2px rgba(201, 74, 114, 0.6);
  }
  
  .rag-dot.blue {
    background-color: #2596be;
    box-shadow: 0 0 8px 2px rgba(37, 150, 190, 0.6);
  }
  
  .rag-dot.white {
    background-color: white;
    box-shadow: none;
  }


.trademark {
    font-size: 0.8em;  /* Slightly smaller size for the trademark */
    margin-left: 5px;  /* Space between text and TM symbol */
}

.popup {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for better contrast */
    z-index: 1000; 
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
}

/* Popup content box */
.popup-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 100%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    transition: transform 0.3s ease-out;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000000; /* Change to red on hover */
}

/* Popup message styling */
.popup p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Optional: Add a badge or icon for the success message */
.popup p::before {
    content: "✔"; /* Checkmark symbol */
    font-size: 28px;
    margin-right: 10px;
    color: #2ecc71; /* Green color for success */
}

/* Add a fade-in effect when the popup shows */
.popup.show {
    opacity: 1;
    transform: scale(1.05); /* Slight scale-up effect on show */
}

/* Make the popup fade out when it closes */
.popup.hide {
    opacity: 0;
    transform: scale(0.95); /* Slight shrink effect on hide */
}

.status-indicator-box {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0; /* Prevents the box from shrinking */
    display: block; /* Changed from inline-block to block */
    margin-right: 0; /* Remove any margin */
}


.status-indicator-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.3);
    border: 1px solid rgba(0,0,0,0.1);
}

/* Status Colors - More vibrant but not garish */
.status-unallocated .status-indicator-circle {
    background: linear-gradient(135deg, #bdbdbd 0%, #9e9e9e 100%);
    border-color: #757575;
}

.status-allocated .status-indicator-circle {
    background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
    border-color: #e65100;
}

.status-offered .status-indicator-circle {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    border-color: #1976d2;
}

.status-declined .status-indicator-circle {
    background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
    border-color: #c62828;
}

.status-confirmed .status-indicator-circle {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
    border-color: #4caf50;
}

.status-complete .status-indicator-circle {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    border-color: #1b5e20;
}

/* Enhanced tooltip styling */
.tooltip {
    position: relative;
    cursor: pointer;
}

.school-list {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #303030;
    padding: 12px;
    border-radius: 6px;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tooltip:hover .school-list {
    opacity: 1;
    visibility: visible;
}

.school-list div {
    padding: 2px 0;

}

.school-list div:last-child {
    border-bottom: none;
}

.data-field input[type="checkbox"] {
    width: auto;
    margin-left: 10px;
    transform: scale(1.2);
}

.data-field input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.team-overview {
    background: #f4f7fc;
    padding: 20px;
    margin-bottom: 25px;
    margin-bottom: 75px;
}

.team-overview-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.teams-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.team-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #007bff;
    transition: transform 0.2s ease;
    min-width: 220px;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-next-session {
    font-size: 14px;
    color: #666;
}

.session-date {
    font-weight: bold;
    color: #007bff;
}

.session-details {
    margin-top: 5px;
    font-size: 13px;
}

.no-session {
    color: #999;
    font-style: italic;
}

/* Scrollbar styling for horizontal scroll */
.teams-grid::-webkit-scrollbar {
    height: 6px;
}

.teams-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.teams-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.teams-grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .teams-grid {
        flex-direction: column;
        overflow-x: visible;
    }
    
    .team-card {
        min-width: auto;
    }
}

.team-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.weekly-calendar {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.day-column {
    flex: 1;
    min-width: 0;
}

.day-header {
    font-weight: bold;
    font-size: 0.75em;
    text-align: center;
    padding: 4px 2px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 4px;
}

.time-slot {
    margin-bottom: 6px;
}

.time-label {
    font-size: 0.7em;
    font-weight: bold;
    color: #666;
    text-align: center;
    margin-bottom: 2px;
}

.session-list {
    min-height: 30px;
}

.mini-session {
    background: #e8f4f8;
    border: 1px solid #b8d4da;
    border-radius: 3px;
    padding: 2px 4px;
    margin-bottom: 2px;
    font-size: 0.65em;
    text-align: center;
    line-height: 1.2;
}

.mini-session.all-day-session {
    background: #fff2cc;
    border-color: #d6b656;
}

.all-day-indicator {
    display: block;
    font-size: 0.6em;
    font-weight: bold;
    color: #d6b656;
    margin-bottom: 1px;
}

.mini-school {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-session-mini {
    color: #999;
    font-size: 0.7em;
    text-align: center;
    padding: 8px 2px;
}

.week-header {
    font-weight: bold;
    font-size: 0.8em;
    text-align: center;
    margin-bottom: 8px;
    color: #333;
    padding: 4px;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Smooth transitions */
.team-next-session, .team-weekly-schedule {
    transition: opacity 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Color key */
.team-color-key {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.85em;
}

.color-key-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.color-indicator.team-a {
    background-color: #4A90E2;
}

.color-indicator.team-b {
    background-color: #F5A623;
}