/* Login button - matches theme header buttons */
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--flavor, #007bff);
    color: #fff !important;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    opacity: 0.8;
}

#custom-login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#custom-login-modal .custom-modal-content {
    padding: 20px;
    width: 300px;
    position: relative;
    background: white;
    border-radius: 5px;
}
.dark #custom-login-modal .custom-modal-content input {
    background: white;
    color: black;
}

#custom-login-modal .custom-modal-content i#close-modal {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    color: black;
}


#custom-login-modal .custom-modal-content form#custom-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
