﻿#alert-container {
    width: 100%;
    margin-bottom: 1rem;
}

    #alert-container .callout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
        font-size: 14px;
        padding: 8px 12px;
        margin: 0 auto;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        max-width: 100%;
        box-sizing: border-box;
    }

        #alert-container .callout span {
            flex-grow: 1;
        }

.alert-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    line-height: 1;
    font-weight: 500;
}

    .alert-icon.fa-exclamation-circle {
        color: red;
    }

    .alert-icon.fa-check-circle {
        color: green;
    }

.callout .close-button {
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
    line-height: 1;
}

.alert-success {
    background-color: #edf7ed;
    color: #256029;
}

.alert-error {
    background-color: #fcebea;
    color: #611a15;
}

.alert-info {
    background-color: #e8f4fd;
    color: #084c77;
}
