.neptune-booking-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.neptune-booking-intro {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f0f4f8;
    border-left: 4px solid #2c3e50;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
}

.neptune-booking-section {
    margin-bottom: 35px;
}

.neptune-booking-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

/* --- Calendrier --- */
.neptune-booking-calendar {
    user-select: none;
}

.neptune-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.neptune-cal-header button {
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: background 0.15s;
}

.neptune-cal-header button:hover {
    background: #ecf0f1;
}

.neptune-cal-header button:disabled {
    opacity: 0.3;
    cursor: default;
}

.neptune-cal-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: capitalize;
}

.neptune-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.neptune-cal-day-name {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
    padding: 6px 0;
    text-transform: uppercase;
}

.neptune-cal-cell {
    text-align: center;
    padding: 10px 4px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: default;
    transition: all 0.15s;
    position: relative;
}

.neptune-cal-cell.empty {
    background: transparent;
}

.neptune-cal-cell.available {
    cursor: pointer;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 500;
}

.neptune-cal-cell.available:hover {
    background: #c8e6c9;
    transform: scale(1.05);
}

.neptune-cal-cell.selected {
    background: #2c3e50 !important;
    color: #fff !important;
    font-weight: 700;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.neptune-cal-cell.disabled {
    color: #ccc;
    background: #fafafa;
    text-decoration: line-through;
}

.neptune-cal-cell.closed {
    color: #e74c3c;
    background: #fdecea;
    text-decoration: line-through;
}

.neptune-cal-cell.past,
.neptune-cal-cell.out-of-range {
    color: #ddd;
    background: transparent;
}

/* --- Date sélectionnée --- */
.neptune-booking-selected-date {
    margin-top: 12px;
    font-size: 0.95rem;
    min-height: 24px;
}

.neptune-booking-selected-date .label {
    display: inline-block;
    padding: 6px 14px;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

/* --- Formulaire --- */
.neptune-booking-form .form-group {
    margin-bottom: 18px;
}

.neptune-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.neptune-booking-form .form-control {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.15s;
}

.neptune-booking-form .form-control:focus {
    border-color: #2c3e50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.neptune-booking-photo-group .form-control[type="file"] {
    padding: 8px;
    height: auto;
}

.neptune-booking-photo-group .form-text {
    display: block;
    margin-top: 6px;
    color: #7f8c8d;
    font-size: 0.82rem;
}

/* --- Checkboxes réparation --- */
.neptune-booking-hint {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.neptune-booking-repair-types {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Active un scroll vertical si la liste depasse 10 types de reparation */
.neptune-booking-repair-types--scroll {
    max-height: 540px;
    overflow-y: auto;
    padding-right: 6px;
}

.neptune-booking-repair-types--scroll::-webkit-scrollbar {
    width: 8px;
}

.neptune-booking-repair-types--scroll::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 999px;
}

.neptune-booking-repair-types--scroll::-webkit-scrollbar-thumb {
    background: #c0c7cf;
    border-radius: 999px;
}

.neptune-booking-repair-types--scroll::-webkit-scrollbar-thumb:hover {
    background: #9aa5b1;
}

.neptune-checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    transition: background 0.15s, border-color 0.15s;
}

.neptune-checkbox-label:hover {
    background: #eef2f7;
    border-color: #bdc3c7;
}

.neptune-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2c3e50;
    cursor: pointer;
    flex-shrink: 0;
}

.neptune-checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #2c3e50;
}

/* --- Bouton submit --- */
.neptune-booking-submit {
    text-align: center;
    padding-top: 10px;
}

.neptune-booking-submit .btn {
    padding: 12px 40px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.neptune-booking-submit .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- Succès --- */
.neptune-booking-success h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.neptune-booking-success h4 .material-icons {
    font-size: 28px;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .neptune-booking-container {
        padding: 10px;
    }

    .neptune-cal-cell {
        padding: 8px 2px;
        font-size: 0.85rem;
    }

    .neptune-cal-day-name {
        font-size: 0.7rem;
    }
}
