/* --------------------------------------------------------
   Custom Announcement Banner (Sidebar Green Matching)
   -------------------------------------------------------- */

.custom-announcement-banner {
    background-color: #003200;  /* exact sidebar green */
    color: #ffffff;
    border-bottom: 1px solid #002000; /* slightly darker border */
    font-family: var(--font3);
    padding: 12px 18px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.custom-announcement-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.custom-announcement-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff; /* Force white text */
}

.custom-announcement-button {
    font-size: 16px;
    padding: 8px 18px;
    text-decoration: none;
    white-space: nowrap;
    background-color: #ffffff; /* White button */
    color: #002600;            /* Sidebar green text */
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.custom-announcement-button:hover {
    background-color: #dce6dc; /* Very light green tint */
    color: #002600;
}