/* Sticky Banner Base Styling */
.top-alert-banner {
    background: #222831;
    color: #EEEEEE;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--accent-color); /* Accent bottom border */
    margin-bottom: 50px;
}

/* Left content */
.tab-left span {
    margin-right: 25px;
    font-size: 16px;
}

.tab-left i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* Right side icons */
.tab-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tab-right .icon {
    color: #fff;
    font-size: 19px;
    transition: 0.3s ease;
}

.tab-right .icon:hover {
    color: var(--accent-color);
}

/* Normalize all icon alignment */
.tab-right .icon,
.tab-right .icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;           /* remove weird icon baseline differences */
    height: 22px;             /* equal box height */
}

/* Adjust individual icon size */
.tab-right .icon i {
    font-size: 18px;
}


/* MAIN BUTTON – Clean Accent Style */
.alert-btn {
    background: var(--accent-color);
    color: #fff; /* Better readable dark grey */
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    text-transform: uppercase;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    text-decoration: none;
    border-radius: 0; /* No rounded corners */
    border: 1px solid rgba(0,0,0,0.05); /* ultra subtle boundary */
}

/* Slim long arrow icon */
.alert-btn i {
    font-size: 20px;
    transition: 0.3s ease;
    color: #fff; /* match text */
}

/* Hover – brighter accent, no darkening */
.alert-btn:hover {
    color: #fff; /* match text */
    transform: translateY(-2px);
}

/* ---------- RESPONSIVENESS ---------- */

@media (max-width: 768px) {
    .top-alert-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px 18px;
    }

    .tab-left {
        margin-bottom: 10px;
    }

    .tab-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .alert-btn {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .tab-left span {
        display: block;
        margin: 4px 0;
        font-size: 13px;
    }

    .tab-right .icon {
        font-size: 17px;
    }

    .alert-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}
