.lcb-booking-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.lcb-booking-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.lcb-booking-container h2 {
    text-align: center;
    color: #2c5f2d;
    margin-bottom: 30px;
    font-size: 28px;
}

.lcb-step {
    display: none;
}

.lcb-step.active {
    display: block;
}

.lcb-step h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5f2d;
}

.lcb-appointment-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.lcb-appointment-type-card {
    background: linear-gradient(135deg, #f8fdf9 0%, #f0f8f1 100%);
    border: 2px solid #e0efe2;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44, 95, 45, 0.08);
    position: relative;
    overflow: hidden;
}

.lcb-appointment-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5f2d 0%, #4a9d4f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lcb-appointment-type-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbf6 100%);
    border-color: #2c5f2d;
    box-shadow: 0 8px 24px rgba(44, 95, 45, 0.15);
    transform: translateY(-4px);
}

.lcb-appointment-type-card:hover::before {
    opacity: 1;
}

.lcb-appointment-type-card h4 {
    color: #1e4520;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}

.lcb-duration {
    color: #5a8a5d;
    font-size: 14px;
    margin: 12px auto 20px auto;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(44, 95, 45, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.lcb-duration::before {
    content: '⏱️';
    font-size: 16px;
}

.lcb-description {
    color: #4a6b4d;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 16px 0;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.lcb-price {
    color: #2c5f2d;
    font-size: 24px;
    font-weight: bold;
    margin: 12px 0;
}

.lcb-select-type {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.02em;
}

.lcb-select-type:hover {
    background: #2c5f2d;
    color: white;
    border-color: #2c5f2d;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
    transform: translateY(-2px);
}

.lcb-back-button {
    margin-bottom: 20px;
}

.lcb-back {
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.lcb-back:hover {
    background: #e0e0e0;
}

.lcb-calendar-wrapper {
    margin-top: 20px;
}

.lcb-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lcb-calendar-header button {
    background: #2c5f2d;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.lcb-calendar-header h4 {
    margin: 0;
    font-size: 20px;
    color: #2c5f2d;
}

#lcb-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.lcb-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.lcb-calendar-day:hover:not(.disabled):not(.header) {
    background: #e8f5e9;
    border-color: #2c5f2d;
}

.lcb-calendar-day.header {
    font-weight: bold;
    color: #666;
    cursor: default;
    background: #f5f5f5;
}

.lcb-calendar-day.disabled {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
}

.lcb-calendar-day.selected {
    background: #2c5f2d;
    color: #fff;
    border-color: #2c5f2d;
}

#lcb-timeslots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.lcb-timeslot {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lcb-timeslot:hover {
    background: #e8f5e9;
    border-color: #2c5f2d;
}

.lcb-timeslot.selected {
    background: #2c5f2d;
    color: #fff;
    border-color: #2c5f2d;
}

#lcb-booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.lcb-form-row {
    margin-bottom: 20px;
}

.lcb-form-row label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.lcb-form-row input[type="text"],
.lcb-form-row input[type="email"],
.lcb-form-row input[type="tel"],
.lcb-form-row select,
.lcb-form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.lcb-form-row input:focus,
.lcb-form-row select:focus,
.lcb-form-row textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 2px rgba(44, 95, 45, 0.1);
}

.lcb-consent-row {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
}

.lcb-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.lcb-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.lcb-checkbox-label span {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.lcb-form-actions {
    margin-top: 30px;
    text-align: center;
}

.lcb-submit-booking {
    background: #2c5f2d;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lcb-submit-booking:hover {
    background: #1e4520;
}

.lcb-loading {
    text-align: center;
    padding: 40px;
}

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

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

.lcb-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .lcb-appointment-types {
        grid-template-columns: 1fr;
    }

    #lcb-calendar {
        gap: 4px;
    }

    .lcb-calendar-day {
        font-size: 12px;
    }

    #lcb-timeslots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

/* Service Information Popup Modal Styles */
#lcb-service-popup-modal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

#lcb-service-popup-modal > div {
    animation: slideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

#lcb-service-popup-modal .button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#lcb-service-popup-modal .button:not(.button-primary) {
    background: #f0f0f0;
    color: #333;
}

#lcb-service-popup-modal .button:not(.button-primary):hover {
    background: #e0e0e0;
}

#lcb-service-popup-modal .button-primary {
    background: #2c5f2d;
    color: #fff;
}

#lcb-service-popup-modal .button-primary:hover {
    background: #1e4520;
}

/* Custom scrollbar for modal */
#lcb-service-popup-modal > div::-webkit-scrollbar {
    width: 8px;
}

#lcb-service-popup-modal > div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#lcb-service-popup-modal > div::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#lcb-service-popup-modal > div::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive modal */
@media (max-width: 768px) {
    #lcb-service-popup-modal > div {
        width: 95%;
        margin: 10% auto;
        max-height: 80vh;
    }
}

@media (max-height: 600px) {
    #lcb-service-popup-modal > div {
        margin: 2% auto;
        max-height: 96vh;
    }
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Calendar Popup Modal Styles */
#lcb-calendar-popup-modal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

#lcb-calendar-popup-modal > div {
    animation: slideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

#lcb-calendar-popup-modal .button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#lcb-calendar-popup-modal .button:not(.button-primary) {
    background: #f0f0f0;
    color: #333;
}

#lcb-calendar-popup-modal .button:not(.button-primary):hover {
    background: #e0e0e0;
}

#lcb-calendar-popup-modal .button-primary {
    background: #2c5f2d;
    color: #fff;
}

#lcb-calendar-popup-modal .button-primary:hover {
    background: #1e4520;
}

#lcb-calendar-popup-modal .button-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Full Calendar Design */
#lcb-calendar-popup-modal .lcb-full-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4520 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

#lcb-calendar-popup-modal .lcb-calendar-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

#lcb-calendar-popup-modal .lcb-calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

#lcb-calendar-popup-modal .lcb-calendar-title {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

#lcb-calendar-popup-modal .lcb-calendar-title h3 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#lcb-calendar-popup-modal .lcb-calendar-title p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

#lcb-calendar-popup-modal .lcb-full-calendar-container {
    padding: 40px;
    background: #fafafa;
}

#lcb-calendar-popup-modal .lcb-full-calendar-grid {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

#lcb-calendar-popup-modal .lcb-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 20px;
}

#lcb-calendar-popup-modal .lcb-weekday {
    text-align: center;
    padding: 15px 5px;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    border-radius: 8px;
}

#lcb-calendar-popup-modal .lcb-calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

#lcb-calendar-popup-modal .lcb-calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    background: white;
    min-height: 60px;
}

#lcb-calendar-popup-modal .lcb-calendar-day:hover:not(.disabled):not(.empty) {
    background: #e8f5e9;
    border-color: #2c5f2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
}

#lcb-calendar-popup-modal .lcb-calendar-day.empty {
    background: transparent;
    cursor: default;
    border: none;
}

#lcb-calendar-popup-modal .lcb-calendar-day.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

#lcb-calendar-popup-modal .lcb-calendar-day.today {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

#lcb-calendar-popup-modal .lcb-calendar-day.today .day-number {
    font-weight: bold;
}

#lcb-calendar-popup-modal .lcb-calendar-day.selected {
    background: #2c5f2d;
    color: white;
    border-color: #1e4520;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

#lcb-calendar-popup-modal .lcb-calendar-day .day-number {
    font-size: 16px;
    font-weight: 600;
}

#lcb-calendar-popup-modal .lcb-calendar-day .day-indicator {
    font-size: 8px;
    color: #2c5f2d;
    margin-top: 2px;
}

#lcb-calendar-popup-modal .lcb-calendar-day.selected .day-indicator {
    color: white;
}

/* Timeslots Section */
#lcb-calendar-popup-modal .lcb-timeslots-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#lcb-calendar-popup-modal .lcb-timeslots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

#lcb-calendar-popup-modal .lcb-timeslots-header h4 {
    margin: 0;
    font-size: 20px;
    color: #2c5f2d;
    font-weight: 600;
}

#lcb-calendar-popup-modal .lcb-selected-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

#lcb-calendar-popup-modal .lcb-timeslots-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#lcb-calendar-popup-modal .lcb-time-period {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

#lcb-calendar-popup-modal .lcb-time-period h5 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#lcb-calendar-popup-modal .lcb-period-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

#lcb-calendar-popup-modal .lcb-timeslot {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    background: white;
}

#lcb-calendar-popup-modal .lcb-timeslot:hover {
    background: #e8f5e9;
    border-color: #2c5f2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
}

#lcb-calendar-popup-modal .lcb-timeslot.selected {
    background: #2c5f2d;
    color: white;
    border-color: #1e4520;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

#lcb-calendar-popup-modal .lcb-no-timeslots {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Action Buttons */
#lcb-calendar-popup-modal .lcb-calendar-actions {
    padding: 30px 40px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#lcb-calendar-popup-modal .lcb-calendar-actions .button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#lcb-calendar-popup-modal .lcb-calendar-actions .button-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2c5f2d;
    color: white;
    border: none;
}

#lcb-calendar-popup-modal .lcb-calendar-actions .button-primary:hover:not(:disabled) {
    background: #1e4520;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

#lcb-calendar-popup-modal .lcb-calendar-actions .button-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#lcb-calendar-popup-modal .btn-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Custom scrollbar for calendar modal */
#lcb-calendar-popup-modal > div::-webkit-scrollbar {
    width: 8px;
}

#lcb-calendar-popup-modal > div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#lcb-calendar-popup-modal > div::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#lcb-calendar-popup-modal > div::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive calendar popup */
@media (max-width: 768px) {
    #lcb-calendar-popup-modal > div {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    #lcb-calendar-popup-modal .lcb-full-calendar-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-title h3 {
        font-size: 22px;
    }
    
    #lcb-calendar-popup-modal .lcb-full-calendar-container {
        padding: 20px;
    }
    
    #lcb-calendar-popup-modal .lcb-full-calendar-grid {
        padding: 20px;
    }
    
    #lcb-calendar-popup-modal .lcb-weekday {
        padding: 10px 5px;
        font-size: 12px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-day {
        min-height: 45px;
        font-size: 14px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-day .day-number {
        font-size: 14px;
    }
    
    #lcb-calendar-popup-modal .lcb-timeslots-section {
        padding: 20px;
    }
    
    #lcb-calendar-popup-modal .lcb-period-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    #lcb-calendar-popup-modal .lcb-timeslot {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-actions {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-actions .button {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    #lcb-calendar-popup-modal .lcb-calendar-day {
        min-height: 40px;
        font-size: 12px;
    }
    
    #lcb-calendar-popup-modal .lcb-calendar-day .day-number {
        font-size: 12px;
    }
    
    #lcb-calendar-popup-modal .lcb-period-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    #lcb-calendar-popup-modal .lcb-timeslot {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Personal Information Modal Styles */
#lcb-personal-info-modal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

#lcb-personal-info-modal > div {
    animation: slideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

/* Form styling */
#lcb-personal-info-modal input,
#lcb-personal-info-modal textarea,
#lcb-personal-info-modal select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#lcb-personal-info-modal input:focus,
#lcb-personal-info-modal textarea:focus,
#lcb-personal-info-modal select:focus {
    outline: none;
    border-color: #2c5f2d !important;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1) !important;
}

#lcb-personal-info-modal input:invalid {
    border-color: #dc3545 !important;
}

#lcb-personal-info-modal label {
    transition: color 0.3s ease;
}

#lcb-personal-info-modal input:focus + label,
#lcb-personal-info-modal textarea:focus + label,
#lcb-personal-info-modal select:focus + label {
    color: #2c5f2d;
}

/* Success message styling */
.lcb-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive personal info modal */
@media (max-width: 768px) {
    #lcb-personal-info-modal > div {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    #lcb-personal-info-modal .grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    #lcb-personal-info-modal input,
    #lcb-personal-info-modal textarea,
    #lcb-personal-info-modal select {
        padding: 10px !important;
        font-size: 13px !important;
    }
    
    #lcb-personal-info-modal .section {
        padding: 20px !important;
    }
}

/* Unified Booking Modal Styles */
#lcb-unified-booking-modal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

#lcb-unified-booking-modal > div {
    animation: slideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

/* Calendar day hover effects */
#lcb-unified-booking-modal [data-date]:hover:not([style*="cursor: not-allowed"]) {
    background: #e8f5e9 !important;
    border-color: #2c5f2d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2) !important;
}

/* Time slot hover effects */
#lcb-unified-booking-modal [data-timestamp]:hover {
    background: #e8f5e9 !important;
    border-color: #2c5f2d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2) !important;
}

/* Responsive unified modal */
@media (max-width: 768px) {
    #lcb-unified-booking-modal > div {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    #lcb-unified-booking-modal .modal-body {
        flex-direction: column;
    }
    
    #lcb-unified-booking-modal .sidebar {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #e9ecef !important;
    }
    
    #lcb-unified-booking-modal .main-content {
        width: 100% !important;
    }
    
    #lcb-unified-booking-modal [data-date] {
        min-height: 40px !important;
        font-size: 14px !important;
    }
    
    #lcb-unified-booking-modal [data-timestamp] {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
}
