﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Header Styles */
.header {
    display: flex;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 100px;
}

.header .container {
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    color: rgba(255, 255, 255, 0.7);
    background-color: dimgrey;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    margin-left: 1rem;
    float: right;
}

.nav {
    display: flex;
    gap: 10px;
}

.nav-link,
.nav-link.focus {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        background: #051339;
        color: rgba(255, 255, 255, 0.7);
    }

/* Main Content */
.main {
    flex: 1;
    padding: 2rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid #1a1a2e;
}

.refresh-btn {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    color: #1a1a2e;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(#1a1a2e);
}

    .refresh-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }

    .refresh-btn:active {
        transform: translateY(0);
    }

.refresh-icon {
    font-size: 1.2rem;
    transition: transform 0.5s ease;
}

.refresh-btn:hover .refresh-icon {
    transform: rotate(180deg);
}

.status {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(#1a1a2e);
    border-top: 4px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    color: white;
}

    .error-message h3 {
        color: #ff6b6b;
        margin-bottom: 1rem;
    }

.retry-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

    .retry-btn:hover {
        background: #c82333;
    }

/* Races Container - Horizontal Slider */
.races-container {
    position: relative;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.races-section {
    position: relative;
    text-align:center;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.1);
    width:100%;
}

.jockey-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(#1a1a2e);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

    .jockey-tile gallery {
        display: flex;
        gap: 1rem;
        padding: 1rem 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(#1a1a2e) rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

.jockeyTable {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight:bold;
}
.jockeyHeader {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.races-gallery {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(#1a1a2e) rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    /* Hide scrollbar in webkit */
    .races-gallery::-webkit-scrollbar {
        display: none;
    }

    .races-gallery::-webkit-scrollbar {
        height: 8px;
    }

    .races-gallery::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .races-gallery::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
        border-radius: 4px;
    }

        .races-gallery::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
        }

.race-tile {
    min-width: 350px;
    max-width: 400px;
    width: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(#1a1a2e);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    scroll-snap-align: start;
    flex-shrink: 0;
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

    .race-tile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
        background-size: 200% 100%;
        animation: shimmer 2s ease-in-out infinite;
    }

@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }

    50% {
        background-position: 200% 0;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.race-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(#1a1a2e);
    border-color: rgba(255, 215, 0, 0.6);
    z-index: 10;
}

.race-tile:nth-child(1) {
    animation-delay: 0.1s;
}

.race-tile:nth-child(2) {
    animation-delay: 0.2s;
}

.race-tile:nth-child(3) {
    animation-delay: 0.3s;
}

.race-tile:nth-child(4) {
    animation-delay: 0.4s;
}

.race-tile:nth-child(5) {
    animation-delay: 0.5s;
}

.race-tile:nth-child(6) {
    animation-delay: 0.6s;
}

.race-tile:nth-child(7) {
    animation-delay: 0.7s;
}

.race-tile:nth-child(8) {
    animation-delay: 0.8s;
}

.race-tile:nth-child(9) {
    animation-delay: 0.9s;
}

.race-tile:nth-child(n+10) {
    animation-delay: 1s;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    color: #1a1a2e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(#1a1a2e);
    z-index: 20;
    opacity: 0.8;
}

    .slider-nav:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(#1a1a2e);
    }

    .slider-nav:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: rgba(255, 255, 255, 0.2);
    }

        .slider-nav:disabled:hover {
            transform: translateY(-50%);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
        }

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-indicator.active {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.2);
    }

    .slider-indicator:hover {
        background: rgba(255, 215, 0, 0.6);
    }

.race-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(#1a1a2e);
}

.race-number {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.race-date {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
}

.track-info {
    margin-bottom: 1rem;
}

.track-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.track-code {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.race-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.race-conditions {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(#1a1a2e);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.conditions-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conditions-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

.conditions-link {
    background: #0000004D;
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* No races message styling */
.no-races-tile {
    min-width: 100%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(#1a1a2e);
    border-radius: 15px;
    padding: 3rem 1.5rem;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(#1a1a2e);
    transition: all 0.3s ease;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }

    .scroll-to-top:active {
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .race-tile {
        min-width: 300px;
        width: 300px;
    }

    .races-gallery {
        padding: 1rem;
        gap: 1.5rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

        .slider-nav.prev {
            left: 5px;
        }

        .slider-nav.next {
            right: 5px;
        }

    .race-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .race-tile {
        min-width: 200px;
        width: 200px;
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .races-gallery {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .predictions-grid {
        display: inline-block;
    }


}


.closePrediction {
    text-align: right;
    width: 100%;
    float: right;
    font-weight: bold;
    font-size: 24px;
    margin-left: -25px;
    z-index: 100;
}




/* Touch device optimizations */
@media (hover: none) {
    .race-tile:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    .slider-nav {
        opacity: 0.9;
    }
}

/* High resolution displays */
@media (min-width: 1400px) {
    .race-tile {
        min-width: 380px;
        width: 380px;
    }

    .predictions-grid {
        display: flex;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        margin-bottom: 2rem;
    }

    .predictions-grid {
        display: flex;
    }
}

.selectorContainer {
    width:100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: minmax(10px, auto);
}




.track-selector {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: .5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 2rem;
}

.selector-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e0;
    flex-shrink: 0;
}

.track-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.track-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: #e2e8f0;
    padding: 0.5rem .5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .track-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .track-btn.active {
        background: linear-gradient(45deg, #051339, #0f3460);
        border-color: #3d3d41;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    }

    .track-btn .race-count {
        background: rgba(255, 255, 255, 0.2);
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .track-btn.active .race-count {
        background: rgba(0, 0, 0, 0.3);
        color: white;
    }

/* Navigation Arrows */
.nav-arrows {
    display: flex;
    gap: 0.5rem;
    float:right;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffd700;
        transform: translateY(-2px);
    }

    .nav-arrow:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: none;
    }


.race-badge {
    background:  #3d3d41;
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 12px #16213e;
}

.article-section {
    margin-bottom: 5px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #4ecdc4;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    line-height: 1.3;
}

.article-content {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0d0;
}

.predictions-grid {
    gap: 5px;
    margin-bottom: 5px;
    position:absolute;
    z-index:99;
    background-color:dimgrey;
}

.prediction-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: 16px;
    padding: 5px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    float: left;
}


.horse-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: 16px;
    padding: 5px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    float:left;
}

    .horse-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        transition: all 0.3s ease;
    }

.first-place::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.second-place::before {
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8);
}

.third-place::before {
    background: linear-gradient(90deg, #cd7f32, #d4af37);
}

.horse-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.place-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.place-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.first-place .place-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.second-place .place-number {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #1a1a2e;
}

.third-place .place-number {
    background: linear-gradient(135deg, #cd7f32, #d4af37);
    color: #ffffff;
}

.place-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.horse-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.horse-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.stats-badge {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.highlights {
    margin-bottom: 16px;
}

    .highlights p {
        font-size: 14px;
        line-height: 1.5;
        color: #d0d0e0;
    }

.performance-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.indicator {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .indicator.excellent {
        background: rgba(255, 107, 107, 0.2);
        color: #ff6b6b;
        border: 1px solid rgba(255, 107, 107, 0.3);
    }

    .indicator.strong {
        background: rgba(255, 217, 61, 0.2);
        color: #ffd93d;
        border: 1px solid rgba(255, 217, 61, 0.3);
    }

    .indicator.winner {
        background: rgba(107, 207, 127, 0.2);
        color: #6bcf7f;
        border: 1px solid rgba(107, 207, 127, 0.3);
    }

    .indicator.workout {
        background: #29568b;
        color: #747bf2;
        border: 1px solid rgba(69, 183, 209, 0.3);
    }

    .indicator.consistent {
        background: rgba(138, 43, 226, 0.2);
        color: #a855f7;
        border: 1px solid rgba(138, 43, 226, 0.3);
    }
