/*
Theme Name: Kadence Child
Description: Child theme of Kadence
Template: kadence
Version: 1.0.0
Text Domain: kadence-child
*/

/* Your custom styles go here */

/* Login/Logout Menu Styling */
.user-menu .user-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.user-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-submenu {
    min-width: 150px;
}

.login-menu-item .login-link {
    background: var(--global-palette1, #0073aa);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.login-menu-item .login-link:hover {
    background: var(--global-palette2, #005a87);
}

/* Custom Login Widget Styling */
.custom-login-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.user-info .welcome-text {
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.user-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-login-widget .btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.login-btn, .dashboard-btn {
    background: var(--global-palette1, #0073aa);
    color: white !important;
}

.login-btn:hover, .dashboard-btn:hover {
    background: var(--global-palette2, #005a87);
    transform: translateY(-1px);
}

.logout-btn {
    background: #dc3545;
    color: white !important;
}

.logout-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .user-actions {
        flex-direction: column;
    }
    
    .custom-login-widget .btn {
        width: 100%;
        text-align: center;
    }
}


/* FLUENT BOOKING */

/* Hide individual services initially */
.fluent-booking-services {
    position: relative;
}

.service-dropdown-wrapper {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-service-selector {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
}

.service-details {
    display: none;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
}

.service-details.active {
    display: block;
}

/* Hide original service list until selection is made */
.fluent-booking-service-list > .service-item {
    display: none;
}

.fluent-booking-service-list > .service-item.selected {
    display: block;
}