/*


login csss


*/

/** variables **/

:root {
    --primary-color: #5E3FF5 ;
    --text-color-side:#fff;
    
    
    
}

/** btns**/ 


.am-admin a.button,.am-signup-form .btn,
.am-admin button,
.am-admin input[type=button],
.am-admin input[type=submit],
.am-body-content a.button,
.am-body-content button,
.am-body-content input[type=button],
.am-body-content input[type=submit],
.am-popup a.button,
.am-popup button,
.am-popup input[type=button],
.am-popup input[type=submit]
 {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    padding: 0.5em 1.2em;
    margin: 0;
    border-radius: 3px;
    color: var(--text-color-side) !important;
    font-weight: bold;
}
.am-signup-form .btn:hover {
    
      border: none !important;
    background-color: #51a31d !important;
    color:#19cdfe !important ;
    
}



/**  side bare **/
.sidebar-nav #sidebarnav .sidebar-item.selected>.sidebar-link {
    border-radius: 0 60px 60px 0;
    color: var(--text-color-side)!important;
    background: var(--primary-color);
    box-shadow: 0 7px 12px 0 rgba(95,118,232,.21);
    opacity: 1;
}

.sidebar-link  i,.sidebar-link{
        color: var(--primary-color)!important;
        font-style: bold;
        font-weight: 600;
}

.user_clickedd{   
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    padding: 0.5em 1.2em;
    margin: 0;
    border-radius: 3px;
    color: var(--text-color-side) !important;
    font-weight: bold;
}

.frm-single .frm-submit {
    display: block;
    width: 100%;
    height: 36px;
    border: none;
    background:var(--primary-color) !important;
    color: var(--text-color-side) !important;
    margin-bottom: 15px;
}

.filter-button.active {
    background-color: #5E3FF5!important;
    color: #FFF !important;
}

}

    #closeButton {
        position: absolute;
        top: -20px;
        right: -10px;
       width: 24px;
        height: 24px;
        background-color: #ccc;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0; /* Remove default padding */
    }

    #closeButton:hover {
        background-color: #aaa;
    }

    .content {
        position: relative;
    }
.floating-card {
    
    
    
}


    .floating-card button {
        background-color: #5E3FF5;
        color: black;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
font-family: "Space Grotesk", sans-serif;        font-weight: 600;
        margin-top: 10px;
    }

    .floating-card button:hover {
        background-color: #5E3FF5;
    }

    .message {
        font-size: 16px;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 5px;
    }

    .error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
        .am-popup .am-popup-header {
background-color:#5E3FF5 !important;
}
.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #5E3FF5; /* Updated background color */
    border-radius: 50%;
    width: 70px; /* Button size */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover animations */
}

.contact-button:hover,
.contact-button.hovered {
    transform: scale(1.1); /* Scale up on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.contact-icon {
    font-size: 30px; /* Icon size */
    color: white;
    transition: transform 0.3s ease; /* Smooth icon transition */
}

.contact-options {
    display: none;
    position: absolute;
    bottom: 75px; /* Positioned above the button */
    right: 0;
    background-color: #ffffff; /* Background for options */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    width: 150px; /* Wider for better appearance */
    opacity: 0; /* Start hidden */
    transform: translateY(10px); /* Slide in effect */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth show/hide */
}

.contact-option {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background-color 0.2s, padding-left 0.3s; /* Hover animation */
}

.contact-option:hover {
    background-color: #f0f0f0; /* Light hover effect */
    padding-left: 25px; /* Slide effect on hover */
}

.contact-button:hover .contact-options,
.contact-button.hovered .contact-options {
    display: block;
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide in */
}

.help-popup {
    
    position: absolute;
    bottom: 80px; /* Position above the button */
    right: -10px;
    background-color: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Prevent text from breaking */
}

.help-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(-10px); /* Slide up effect */
}