/* Fallback fonts for when Google Fonts are blocked */
body,
* {
    font-family: 'Inter', 'Inter var', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
}

.material-icons {
    font-family: 'Material Icons', 'Font Awesome', 'Ionicons', sans-serif !important;
}

.security-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.security-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.security-modal-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.security-modal-header h2 {
    color: #dc3545;
    margin: 0;
    font-size: 24px;
}

.security-modal-body {
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.security-modal-body p {
    margin: 10px 0;
}

.security-modal-footer {
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.security-modal-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.security-modal-button:hover {
    background-color: #c82333;
}

.app-blur {
    filter: blur(5px);
    pointer-events: none;
}
