/* 
 * ==========================================
 * Global Alerts CSS
 * ==========================================
 */

.alert-global-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alert-global-overlay.show {
    opacity: 1;
}

.alert-global-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-global-overlay.show .alert-global-box {
    transform: scale(1);
}

.alert-global-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.alert-global-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.alert-global-message {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
    word-wrap: break-word;
}

.alert-global-btn {
    background: #0a2540;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.alert-global-btn:hover {
    background: #153c63;
}

/* Modifier classes for different types */
.alert-global-icon.info { color: #17a2b8; }
.alert-global-icon.error { color: #dc3545; }
.alert-global-icon.success { color: #28a745; }
.alert-global-icon.warning { color: #ffc107; }
