/**
 * Mobile Profile Dropdown Styles
 * Ensures the profile dropdown is visible and properly positioned on all screen sizes
 */

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader .loader {
    text-align: center;
}

.preloader .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Ensure dropdown content is properly positioned */
#mobile-profile-dropdown .main-area {
    position: absolute !important;
    top: 60px !important;
    right: 0 !important;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show dropdown when active */
#mobile-profile-dropdown.active .main-area {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Mobile specific adjustments */
@media (max-width: 991px) {
    #mobile-profile-dropdown .main-area {
        top: 50px !important;
        right: -10px !important;
    }
}

/* Make sure dropdown appears above other elements */
#mobile-profile-dropdown {
    position: relative;
    z-index: 1000;
}
