
/* Compact Tee Times Page Styles */
.teetimes-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #fff;
    border-bottom: 1px solid #e1e5e9;
    padding: 0.75rem 0;
    margin-top: 90px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #1a3419;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Course Hero Section */
.course-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9) 0%, rgba(26, 61, 31, 0.95) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    overflow: hidden;
    min-height: auto;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.course-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.8) 0%, rgba(26, 61, 31, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.tee-times-summary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.tee-times-count {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tee-times-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.3;
}

.course-name {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white !important;
}

.course-address {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.course-coordinates {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-features-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.info-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.info-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Date Selection Section */
.date-selection-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.date-selection-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-picker-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Compact Filter Section */
.filters-section {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filters-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.filter-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.filter-icon-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    position: relative;
}

.filter-icon-button:hover {
    background: #e9ecef;
    border-color: #2c5530;
    transform: translateY(-1px);
}

.filter-icon-button.has-value {
    background: #e8f5e8;
    border-color: #2c5530;
    color: #2c5530;
}

.filter-icon-button.has-value::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: #2c5530;
    border-radius: 50%;
}

.filter-icon {
    font-size: 1.1rem;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.action-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.clear-button {
    background: #6c757d;
    color: white;
}

.clear-button:hover {
    background: #5a6268;
}

.refresh-button {
    background: #2c5530;
    color: white;
}

.refresh-button:hover {
    background: #1a3d1f;
}

.auto-refresh-info {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Filter Modal Styles */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.filter-modal.show {
    display: flex;
}

.filter-modal-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.filter-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.filter-modal-close:hover {
    background: #f8f9fa;
}

.filter-option {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.filter-option:hover {
    background: #f8f9fa;
    border-color: #2c5530;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.2s;
}

.filter-input:focus {
    outline: none;
    border-color: #2c5530;
}

.filter-input[value]:not([value=""]) {
    border-color: #2c5530;
    background-color: #f0f8f0;
}

button.filter-input {
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

button.filter-input:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

button.filter-input:active {
    transform: translateY(0);
}

#clear-filters-button:hover {
    background: #555 !important;
}

#refresh-button:hover {
    background: #1a3d1f !important;
}

.no-results {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Enhanced Date Picker Styling */
#date-picker {
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-width: 200px;
}

#date-picker:hover {
    border-color: #2c5530;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.1);
    transform: translateY(-1px);
}

#date-picker:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 4px 16px rgba(44, 85, 48, 0.15);
    transform: translateY(-1px);
}

/* Calendar icon styling for webkit browsers */
#date-picker::-webkit-calendar-picker-indicator {
    color: #2c5530;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c5530' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#date-picker::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(44, 85, 48, 0.1);
}

.date-range-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.available-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.date-chip {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #2c5530;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.date-chip:hover {
    background: #d4edda;
    border-color: #c3e6cb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.date-chip:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.date-chip.selected {
    background: #2c5530;
    border-color: #1a3d1f;
    color: white;
    font-weight: 600;
}

.date-chip.has-deals {
    background: #fff3cd;
    border-color: #ffecb5;
    color: #856404;
}

.date-chip.has-deals:hover {
    background: #ffeaa7;
    border-color: #ffd93d;
}

.date-chip.has-deals.selected {
    background: #856404;
    border-color: #6c5204;
    color: white;
}

/* Results Summary */
.results-summary {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5530;
}

.results-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.data-timestamp {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0 0 0;
}

/* Loading States */
.loading-container {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    margin: 2rem 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c5530;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.error-container {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}

.retry-button {
    background: #2c5530;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
}

/* Compact Tee Times Grid */
.teetimes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Compact Tee Time Cards */
.teetime-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
    position: relative;
}

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

.teetime-card.hot-deal {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff 0%, #fff8f4 100%);
}

.teetime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.teetime-time {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.time {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5530;
}

.meridian {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.hot-deal-badge {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255,107,53,0.3);
}

.teetime-pricing {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.display-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.price-label {
    font-size: 0.85rem;
    color: #666;
}

.teetime-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

/* Book button styles removed - no longer needed */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-name {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
    }

    .hero-right-column {
        order: -1;
        align-items: stretch;
    }

    .tee-times-summary {
        min-width: auto;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .tee-times-count {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 100%;
        height: 160px;
        max-width: none;
    }

    .course-hero {
        padding: 1.5rem 0;
        margin-top: 80px;
        min-height: auto;
    }

    .course-coordinates {
        font-size: 0.8rem;
    }

    .course-info-bar {
        justify-content: flex-start;
    }

    .info-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Date selection responsive */
    .date-picker-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Filter section responsive */
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-actions {
        width: 100%;
        justify-content: space-between;
    }

    .filter-icons-row {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 0.5rem;
        width: 100%;
    }

    .filter-icon-button {
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .teetimes-grid {
        grid-template-columns: 1fr;
    }
    .teetime-details {
        grid-template-columns: 1fr;
    }

    /* Modal responsive */
    .filter-modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .course-name {
        font-size: 1.8rem;
    }

    .course-address {
        font-size: 1rem;
    }

    .hero-image {
        height: 140px;
    }

    .course-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Ultra-compact filters for very small screens */
    .filter-icons-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .filter-icon-button {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
        flex-direction: column;
        gap: 0.2rem;
    }

    .filter-icon {
        font-size: 1rem;
    }

    .filters-title {
        font-size: 1rem;
    }

    .action-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .auto-refresh-info {
        font-size: 0.7rem;
    }
}

/* Auto-refresh indicator */
.refresh-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(44, 85, 48, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.refresh-indicator.show {
    opacity: 1;
}

/* Book Tee Time Button */
.btn-book-teetime {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    background: #2c5530;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-book-teetime:hover {
    background: #1a3419;
    transform: translateY(-1px);
}

.btn-book-teetime:active {
    transform: translateY(0);
}

/* Booking Modal (App Download Promotion) */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.booking-modal-body {
    text-align: center;
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.booking-modal-body h3 {
    font-size: 1.75rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.app-store-btn.apple {
    background: #000;
    color: white;
}

.app-store-btn.apple:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-store-btn.google {
    background: #000;
    color: white;
}

.app-store-btn.google:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-store-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-on {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: -2px;
}

.coming-soon-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .booking-modal-body h3 {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .app-store-buttons {
        gap: 0.75rem;
    }

    .app-store-btn {
        padding: 0.75rem 1.25rem;
    }

    .store-name {
        font-size: 1rem;
    }
}