﻿:root {
    --primary-color: #1a8754;
    --secondary-color: #f8f9fa;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

.main-container {
    max-width: 1400px;
    margin-top: 2rem;
}

.left-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.booking-sidebar {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
    height: fit-content;
}

@media (max-width: 992px) {
    .booking-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sidebar-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.eligibility-box {
    background-color: #e7f4ff;
    border: 1px solid #b6d4fe;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.booking-summary {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

    .booking-item:last-child {
        border-bottom: none;
        font-weight: bold;
        font-size: 1.1rem;
    }

.trekker-section {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.trekker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.trekker-title {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.remove-trekker {
    color: var(--danger-color);
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.add-trekker-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0 auto 2rem;
}

    .add-trekker-btn:hover {
        background-color: #147246;
    }

.payment-option {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .payment-option:hover {
        background-color: #f8f9fa;
        border-color: var(--primary-color);
    }

    .payment-option.selected {
        background-color: #e8f5e9;
        border-color: var(--primary-color);
    }

.form-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.required::after {
    content: " *";
    color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.booking-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    width: 100%;
}

.booking-form .btn-primary:hover {
    background-color: #147246;
    border-color: #147246;
}

.rules-list {
    padding-left: 1.25rem;
}

    .rules-list li {
        margin-bottom: 0.5rem;
    }

.price-breakdown {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trek-difficulty {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #dc3545;
    color: white;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.payment-instructions {
    background-color: #fff3cd;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .left-content, .booking-sidebar {
        padding: 1.5rem;
    }
}
.day-card {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

    .day-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

.day-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.camping-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
    flex: 1 1 calc(33% - 10px);
    transition: 0.2s;
    background-color: #f9f9f9;
}

.camping-options {
    display: flex;
    flex-wrap: wrap;
}


    .camping-option:hover {
        background-color: #e3f2fd;
        border-color: #0d6efd;
    }

    .camping-option.selected {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

.camping-img img {
    width: 100%;
    height: 80px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.camping-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.price-badge {
    display: inline-block;
    background-color: #198754;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.85em;
}
