﻿/* Notification Overlay */
.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Alert Container */
.alert {
    background-color: white;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease-out;
}

/* Status Icon */
.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon {
    background-color: #e6f7ed;
    color: #0d8a4c;
    border: 2px solid #0d8a4c;
}

.error-icon {
    background-color: #feeceb;
    color: #d9342b;
    border: 2px solid #d9342b;
}

/* Title */
.alert-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-title {
    color: #0d8a4c;
}

.error-title {
    color: #d9342b;
}

/* Message */
.alert-message {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #505f79;
}

/* Action Button */
.btn {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

    .btn:hover {
        background-color: #2563eb;
    }

/* Footer info */
.alert-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
