.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF4E7;
    border: 3px solid #D10531;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(132, 3, 16, 0.3);
    padding: 30px;
    max-width: 450px;
    width: 90%;
    z-index: 10000;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
}

.alert-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.alert-success { color: #840310; }
.alert-error { color: #D10531; }
.alert-warning { color: #FF6800; }

.alert-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #840310;
    font-family: 'Raleway', sans-serif;
}

.alert-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
}

.alert-button {
    background: #D10531;
    color: #FFF4E7;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-button:hover {
    background: #840310;
    transform: scale(1.05);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}