/* Admin Modals */
#admin-login-modal,
#admin-import-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#admin-login-modal.hidden,
#admin-import-modal.hidden {
    display: none;
}

.modal-content {
    background: var(--sidebar-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 320px;
    text-align: center;
}

.modal-content h3 {
    margin-top: 0;
    color: var(--text-color);
}

.modal-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

#admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#admin-login-form input {
    padding: 10px;
    background: #0f172a;
    border: 1px solid #475569;
    color: white;
    border-radius: 4px;
    outline: none;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.modal-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#btn-cancel-login {
    background: transparent;
    border: 1px solid #475569;
    color: #94a3b8;
}

#btn-submit-login {
    background: var(--danger);
    color: white;
}

#btn-submit-login:hover {
    background: #dc2626;
}