@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

#invoice-status-alert{
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#invoice-status-alert li{
    margin-bottom: 20px;
    text-align: justify;
}

#invoice-status-alert ul ul > li {
    margin-bottom: 20px;
}

#invoice-status-alert ul ul > li:first-child {
    margin-top: 20px;
}

#invoice-status-alert ul ul ul > li:first-child{
    margin-top: 20px;
}

.custom-banner {
    background-color: #FFE066;
    color: #4a4a00;
    border: 1px solid #367C2B;
    border-radius: 6.2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    padding: 0.5rem 2.5rem;
    flex: auto;
    min-height: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px #fffbe6;
    position: relative;
    animation: fadeIn 0.5s;
    transition: max-width 0.2s, padding 0.2s;
    margin-bottom: 20px;
}

.custom-banner__icon {
    margin-right: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px #fffbe6);
}

.custom-banner span {
    max-height: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.3;
    word-break: break-word;
    color: #3d3d1a;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px #fffbe6;
    text-align: left;
}

.custom-banner ul {
    text-align: left;
    margin-left: 0;
    padding-left: 1.5em;
    max-height: 70px;
    overflow-y: auto;
}

.custom-banner__close {
    position: absolute;
    right: 10px;
    top: 6px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #bdb76b;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-banner__close:hover {
    color: #ffb300;
}