.simple-alert-bar {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    width: 100%;
    z-index: 9999;
}

.sab-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

a.sab-btn {
    background-color: white;
    color: #00b3b5;
    padding: 0px 12px;
    border-radius: 100px;
    margin-left: 12px;
    border: 2px solid white;
    transition: all 200ms ease-in-out;
    text-align: center;
    line-height: 1.25;
}
a.sab-btn:hover {
    text-decoration: none;
    background-color: #00b3b5;
    color: white;
}

.sab-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.sab-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .simple-alert-bar {
        font-size: 14px;
        padding: 8px;
    }
}
@media (max-width: 500px) {
    .simple-alert-bar {
        font-size: 12px;
        text-align: left;
    }
    .sab-icon {
        margin-right: 10px;
    }
}