/* ===================================
   URGENCY STRIP LINK STYLING
   Clean links for enforcement stats
   =================================== */

/* Style links in urgency strip */
.urgency-text a {
    color: white !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(255, 255, 255, 0.5) !important;
    text-underline-offset: 2px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.urgency-text a:hover {
    text-decoration-color: rgba(255, 255, 255, 1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Make sure urgency text is centered and readable */
.urgency-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.urgency-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}