﻿.email-status {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 12px 16px;
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #2f7ea4, #3fa3c6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.4s ease-out;
}

    .email-status .status-icon {
        margin-right: 8px;
        font-size: 16px;
        vertical-align: middle;
    }

    /* Success */
    .email-status.success {
        background: linear-gradient(90deg, #9535aa, #23586f);
    }

    /* Error */
    .email-status.error {
        background: linear-gradient(90deg, #c0392b, #e74c3c);
    }

    /* Warning */
    .email-status.warning {
        background: linear-gradient(90deg, #f39c12, #f1c40f);
        color: #1f2d3d;
    }

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
