/* Custom Active/Open Countdown Pill Badge for Storefront Cards */
.custom-open-pill {
    display: inline-block;
    background-color: #9E7E38; /* Institutional Old Gold for brand consistency */
    color: #ffffff !important; /* High contrast white text */
    font-family: 'Nunito Sans', sans-serif; /* Primary brand sans-serif */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px; 
    margin-top: 8px;
    margin-bottom: 4px;
    align-self: flex-start;
    width: max-content;
}

/* Custom Registration Status Pill Badge for Closed Storefront Cards */
.custom-closed-pill {
    display: inline-block;
    background-color: #000000; /* Brand Black for boldness and strength */
    color: #ffffff !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    margin-bottom: 4px;
    align-self: flex-start;
    width: max-content;
}

/* Elegant Callout Box for Individual Listing Pages */
.custom-detail-deadline-box {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background-color: #fdf6e9; /* Light premium cream background accent */
    border-left: 4px solid #9E7E38; /* Old Gold structural left border accent */
    border-radius: 4px;
    width: max-content;
    max-width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

/* Editorial Brand Rule (Page 16): To emphasize words/phrases, use bold & italics together */
.custom-detail-deadline-box strong em {
    color: #9E7E38; /* Old Gold text emphasis highlight */
    font-style: italic;
    font-weight: 700;
}