.excellence-booking-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.excellence-logo {
    text-align: center;
    margin-bottom: 30px;
}

.excellence-logo img {
    max-height: 80px;
    max-width: 200px;
}

.excellence-booking-header {
    margin-bottom: 30px;
}

.excellence-booking-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.excellence-meeting-info {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.excellence-booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.excellence-calendar-section {
    border-right: 1px solid #e5e5e5;
    padding-right: 30px;
}

.excellence-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.excellence-calendar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.excellence-nav-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #0069ff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.excellence-nav-btn:hover {
    background: #f0f0f0;
}

.excellence-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.excellence-calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
    text-transform: uppercase;
}

.excellence-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    color: #1a1a1a;
}

.excellence-calendar-day:hover:not(.disabled):not(.selected) {
    background: #f0f0f0;
}

.excellence-calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.excellence-calendar-day.available {
    color: #0069ff;
    border: 1px solid #0069ff;
}

.excellence-calendar-day.selected {
    background: #0069ff;
    color: #fff;
    border: 1px solid #0069ff;
}

.excellence-timezone {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.excellence-timezone-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.excellence-time-section {
    display: flex;
    flex-direction: column;
}

.excellence-selected-date {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.excellence-time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.excellence-time-slot {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    text-align: center;
}

.excellence-time-slot:hover {
    border-color: #0069ff;
    background: #f8f9ff;
}

.excellence-time-slot.selected {
    background: #0069ff;
    color: #fff;
    border-color: #0069ff;
}

.excellence-next-btn,
.excellence-submit-btn {
    background: #0069ff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.excellence-next-btn:hover:not(:disabled),
.excellence-submit-btn:hover {
    background: #0052cc;
}

.excellence-next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.excellence-back-btn {
    background: none;
    border: none;
    color: #0069ff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    margin-bottom: 20px;
}

.excellence-booking-summary {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.excellence-summary-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.excellence-summary-item:last-child {
    margin-bottom: 0;
}

.excellence-summary-label {
    font-weight: 600;
    color: #666;
    margin-right: 10px;
    min-width: 100px;
}

.excellence-summary-value {
    color: #1a1a1a;
}

.excellence-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.excellence-form-group {
    display: flex;
    flex-direction: column;
}

.excellence-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.excellence-form-group .required {
    color: #e74c3c;
}

.excellence-form-group input,
.excellence-form-group textarea {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.excellence-form-group input:focus,
.excellence-form-group textarea:focus {
    outline: none;
    border-color: #0069ff;
}

.excellence-phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
}

.excellence-phone-input:focus-within {
    border-color: #0069ff;
}

.excellence-flag {
    font-size: 20px;
}

.excellence-phone-input input {
    border: none;
    padding: 12px 0;
    flex: 1;
}

.excellence-phone-input input:focus {
    outline: none;
}

.excellence-confirmation-content {
    text-align: center;
    padding: 40px 20px;
}

.excellence-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.excellence-confirmation-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.excellence-confirmation-message {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.excellence-booking-details {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.excellence-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.excellence-detail-item:last-child {
    margin-bottom: 0;
}

.excellence-detail-icon {
    font-size: 18px;
}

.excellence-detail-value {
    color: #1a1a1a;
}

.excellence-loading {
    text-align: center;
    padding: 40px;
}

.excellence-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0069ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .excellence-booking-content {
        grid-template-columns: 1fr;
    }
    
    .excellence-calendar-section {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .excellence-booking-container {
        padding: 20px;
        margin: 20px;
    }
}
