/* Enforcement Banner Styles */
.enforcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 12px 16px;
}

.enforcement-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.enforcement-banner-message {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #856404;
    font-weight: 500;
}

.enforcement-banner-message .fa-shield {
    font-size: 20px;
}

.enforcement-banner .btn-warning {
    white-space: nowrap;
}

/* Adjust layout when banner is visible to prevent content overlap */
body.has-enforcement-banner {
    padding-top: 56px;
}

body.has-enforcement-banner .topnavbar-wrapper
{
    top: 56px !important;
}


@media (max-width: 768px) {
    .enforcement-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .enforcement-banner-message {
        flex-direction: column;
    }
}
