.lbs-selected-slots {
    margin: 0;
}

.lbs-selected-slots-title{
    margin-bottom: 5px;
}

.lbs-step {
    display: none;
    animation: fadeIn 0.3s;
}

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

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

.lbs-timezone-selector {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.lbs-timezone-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.lbs-timezone-selector select {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.lbs-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.lbs-package-card {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.lbs-package-card:hover {
    border-color: #000000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.lbs-package-card.lbs-selected {
    border-color: #000000;
    background-color: #f3f6fd;
}

.lbs-package-card h3 {
    font-size: 17px;
    line-height: 1.1;
    margin: 0;
    color: #061b46;
}

.lbs-lessons-count {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.lbs-price {
    font-size: 18px;
    font-weight: bold;
    color: #061b46;
    margin: 10px 0;
}

.lbs-tag {
    display: inline-block;
    padding: 4px 8px;
    background: #f59e0b;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
}

.lbs-slots-info {
    margin: 7px 0;
    padding: 10px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.lbs-slots-counter {
    font-size: 18px;
    font-weight: 600;
    color: #061b46;
}

.lbs-slots-message {
    margin: 10px 0 20px 0;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.lbs-slots-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.lbs-slots-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

/* NEW CALENDAR LAYOUT */
.lbs-calendar-layout {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    align-items: flex-start;
}

/* MONTH VIEW (LEFT SIDE) */
.lbs-month-view {
    flex: 0 0 350px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

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

.lbs-month-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.lbs-month-nav {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.lbs-month-nav:hover {
    background: #e9e9e9;
    border-color: #9ca3af;
}

.lbs-day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.lbs-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 8px 0;
}

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

.lbs-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    border: 2px solid transparent;
}

.lbs-calendar-day.lbs-empty {
    cursor: default;
}

.lbs-calendar-day.lbs-has-slots {
    background: #dddddd;
    color: #061b46;
    font-weight: 600;
}

.lbs-calendar-day.lbs-has-slots:hover {
    background: #dddddd;
    border-color: #061b46;
}

.lbs-calendar-day.lbs-no-slots {
    background: #f9fafb;
    color: #d1d5db;
    cursor: not-allowed;
}

.lbs-calendar-day.lbs-selected-day {
    background: #061b46;
    color: white;
    border-color: #061b46;
}

/* SLOTS VIEW (RIGHT SIDE) */
.lbs-slots-view {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.lbs-slots-header {
    font-weight: 600;
    font-size: 18px;
    color: #061b46;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    text-transform: capitalize;
}

.lbs-slots-grid-vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.lbs-slot-time {
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    background: white;
    font-weight: 500;
}

.lbs-slot-time:hover {
    border-color: #061b46;
    background-color: #f0f0f0;
}

.lbs-slot-time.lbs-selected {
    background-color: #061b46;
    color: white;
    border-color: #061b46;
}

.lbs-slot-time.lbs-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f3f4f6;
}

.lbs-no-slots-msg {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

/* OLD CALENDAR STYLES (KEEP FOR BACKWARDS COMPATIBILITY) */
.lbs-calendar {
    margin: 30px 0;
}

.lbs-calendar-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.lbs-date-group {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    background: white;
}

.lbs-date-header {
    font-weight: bold;
    margin-bottom: 15px;
    color: #061b46;
    font-size: 18px;
}

.lbs-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.lbs-slot {
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    background: white;
}

.lbs-slot:hover {
    border-color: #061b46;
    background-color: #dddddd;
}

.lbs-slot.lbs-selected {
    background-color: #061b46;
    color: white;
    border-color: #061b46;
}

.lbs-slot.lbs-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f3f4f6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lbs-calendar-layout {
        flex-direction: column;
    }
    
    .lbs-month-view {
        flex: 1;
        width: 100%;
    }
    
    .lbs-slots-grid-vertical {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* BOOKING SUMMARY & FORMS */
.lbs-booking-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.lbs-booking-summary h3 {
    margin-top: 0;
}

.lbs-form-group {
    margin-bottom: 20px;
}

.lbs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.lbs-form-group input,
.lbs-form-group textarea,
.lbs-form-group select {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
}

.lbs-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lbs-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* BUTTONS */
.lbs-btn {
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.lbs-btn-primary {
    background-color: #061b46;
    color: white;
}

.lbs-btn-primary:hover:not(:disabled) {
    background-color: #061b46;
}

.lbs-btn-secondary {
    background-color: #6b7280;
    color: white;
}

.lbs-btn-secondary:hover:not(:disabled) {
    background-color: #4b5563;
}

.lbs-btn-success {
    background-color: #061b46;
    color: white;
}

.lbs-btn-success a {
    color: #ffffff !important;
}

.lbs-btn-success:hover:not(:disabled) {
    background-color: #061b46;
}

.lbs-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lbs-step-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* MESSAGES */
.lbs-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.lbs-errors {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.lbs-success-message {
    background-color: #eeeeee;
    border: 1px solid #061b46;
    color: #4d4d4d;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.lbs-success-message h2 {
    margin-top: 0;
    color: #061b46;
}