﻿.field-cards-scroll-wrapper {
    position: relative;
}

    .field-cards-scroll-wrapper::before,
    .field-cards-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 30px;
        z-index: 2;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .field-cards-scroll-wrapper::before {
        left: 0;
        background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
        opacity: 0;
    }

    .field-cards-scroll-wrapper::after {
        right: 0;
        background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
    }

    .field-cards-scroll-wrapper.scrolled-left::before {
        opacity: 1;
    }

    .field-cards-scroll-wrapper.scrolled-right::after {
        opacity: 0;
    }

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 14px;
}

    .scroll-indicator:hover {
        background: white;
        color: #28a745;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.scroll-left {
    left: 10px;
    opacity: 0;
}

.scroll-right {
    right: 10px;
}

.field-cards-scroll-wrapper.scrolled-left .scroll-left {
    opacity: 1;
}

.field-cards-scroll-wrapper.scrolled-right .scroll-right {
    opacity: 0;
}

.field-cards-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .field-cards-container::-webkit-scrollbar {
        display: none;
    }

    .field-cards-container:active {
        cursor: grabbing;
    }

.field-cards-wrapper {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding-bottom: 10px;
}

.field-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.field-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.field-card-body {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
}

    .field-card-body .row.d-m {
        margin-left: -2px;
        margin-right: -2px;
    }

    .field-card-body .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }

/* Field Navigation Styling */
/* .field-card-navigation-section {
            margin-top: 3px;
            padding-top: 3px;
        } */

.field-navigation-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Orange Outline Button Navigation (No Lines) */
.field-navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    position: relative;
    z-index: 1;
}

.field-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid;
    width: 110px;
    text-transform: uppercase;
}

.field-nav-btn--outline {
    background: white;
    color: #ff6b35;
    border-color: #ff6b35;
}

    .field-nav-btn--outline:hover {
        background: #ff6b35;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }

.venue-time-slot {
    background-color: white;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

    .venue-time-slot:not(.bg--grey):not(.bg--yellow):not(.invisible-slot-exact):hover {
        border-color: #28a745;
    }

    .venue-time-slot.selected {
        background-color: #62cea4 !important;
        border-color: #62cea4 !important;
    }

        .venue-time-slot.selected .slot-status {
            display: none !important;
        }

        .venue-time-slot.selected .slot-cancel {
            display: block !important;
            color: white !important;
            font-weight: bold;
        }

.slot-cancel {
    display: none;
}

.venue-time-slot .slot-content {
    pointer-events: none;
}

.venue-time-slot.bg--grey {
    background-color: #6c757d !important;
    border-color: #555 !important;
}

.venue-time-slot.bg--yellow {
    background-color: #ffc107 !important;
    border-color: #d39e00 !important;
}

.invisible-slot-exact {
    background-color: transparent !important;
    border-color: transparent !important;
    cursor: default !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

    .invisible-slot-exact:hover {
        transform: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }

#Date {
    width: 280px !important;
    max-width: 280px !important;
}

.sport-dropdown {
    min-width: 280px !important;
    max-width: 280px !important;
}

    .sport-dropdown select {
        width: 280px !important;
        max-width: 280px !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
