:root {
    --primary-bg: #0f3852;
    --secondary-bg: #0f3852;
    --accent-color: #03aebc;
    --text-color: #FFFFFF;
    --text-secondary: #e0e0e7;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--secondary-bg);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.5;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: #082334;
}

.text-white {
    color: #fff;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 600;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.booking-wrapper {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.booking-grid.three-columns {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-grid.three-columns {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.booking-column {
    display: flex;
    flex-direction: column;
}

.booking-column h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Profile column styles */
.profile-column {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.profile-description {
    color: var(--text-secondary);
    font-size: 1.0rem;
    line-height: 1.5;
}

.profile-highlights {
    margin-top: 1rem;
    list-style: none;
}

.profile-highlights li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.profile-highlights li:before {
    content: "►";
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.profile-contact {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Calendar styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-nav button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.month-year {
    text-align: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.calendar-day:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.disabled {
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.5;
    background-color: transparent;
}

.calendar-day.selected {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
}

/* Time slots styles */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-slot {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.time-slot:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.time-slot.selected {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
    border-color: var(--accent-color);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.time-slot.disabled:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--text-color);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #d89a90;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.confirmation {
    display: none;
    text-align: center;
    padding: 2rem;
}

.confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.confirmation p {
    margin-bottom: 2rem;
}

.back-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn:hover {
    background-color: rgba(192, 131, 122, 0.1);
}

/* Selected info */
.selected-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.selected-info p {
    margin: 0;
}

.change-selection {
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Utility classes */
.hidden {
    display: none;
}

.error-message {
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-align: center;
}

/* Time sections styles */
.time-section {
    margin-bottom: 1.5rem;
}

.time-section-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}



.confirmation-message {
    background: #082334;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #03aebc;
}

.confirmation-details {
    background: rgba(3, 174, 188, 0.1);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    text-align: left;
}

.back-button {
    display: inline-block;
    background: #03aebc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.time-slot {
    /* Styles normaux */
    transition: all 0.3s;
}

.time-slot.unavailable {
    display: none;
}

.time-slot.booked {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: line-through;
    pointer-events: none;
}

.time-slot.booked:hover {
    background-color: rgba(255, 255, 255, 0.05);
}