/* CrashGuard Lite Admin Styles */
.wrap h1 {
    margin-bottom: 20px;
}
.notice {
    margin-top: 20px;
}

/* Modal overlay */
#recovery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
}

/* Modal content */
#recovery-modal .modal-content {
    background: #fff;
    max-width: 500px;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    animation: fadeInUp 0.5s ease both;
}

/* Heading styling */
#recovery-modal .modal-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

/* List styling */
#recovery-modal .modal-content ol {
    margin-left: 20px;
    color: #555;
}
#recovery-modal .modal-content ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Button styling */
#recovery-modal .modal-content button {
    background: #0073aa;
    border: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
#recovery-modal .modal-content button:hover {
    background: #005177;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







