.mindbody-header-auth {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.mindbody-login-btn {
    background: #EABD1E;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 189, 30, 0.3);
}

.mindbody-login-btn:hover {
    background: #d4aa18;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 189, 30, 0.5);
    color:#000;
}

.mindbody-header-profile {
    position: relative;
}

.mindbody-profile-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mindbody-profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EABD1E;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(234, 189, 30, 0.3);
}

.mindbody-profile-trigger:hover .mindbody-profile-icon {
    background: #d4aa18;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(234, 189, 30, 0.5);
}

.mindbody-profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}

.mindbody-profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mindbody-dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mindbody-dropdown-item:hover {
    background-color: #f5f5f5;
}

.mindbody-dropdown-item.mindbody-logout {
    color: #cc0000;
    border-top: 1px solid #e0e0e0;
}

.mindbody-dropdown-item.mindbody-logout:hover {
    background-color: #fff5f5;
}

@media (max-width: 768px) {
    .mindbody-header-auth {
        margin-left: 10px;
    }

    .mindbody-login-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mindbody-profile-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .mindbody-profile-dropdown {
        min-width: 160px;
    }
}
