#urgent-news-bar {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    z-index: 1;                 
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.urgent-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 55px;
    width: 100%;
    box-sizing: border-box;
}

.urgent-label {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 20px;
    white-space: nowrap;
    min-width: 85px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.urgent-icon { margin-right: 8px; font-size: 16px; }

.urgent-news-ticker {
    flex: 1;
    overflow: hidden;
    height: 35px;
    display: flex;
    align-items: center;
    margin: 0 20px;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0 15px;
}

.urgent-news-scroll {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: white;
    position: relative;
    display: inline-block;
}

.urgent-news-scroll.arabic { direction: rtl; text-align: right; }

body.urgent-active { padding-top: 0 !important; }  /* neutralize the old behavior */

/* Responsive */
@media (max-width: 768px) {
    #urgent-news-bar { min-height: 80px; }
    .urgent-bar-content { flex-direction: column; padding: 12px 15px; height: auto; }
    .urgent-label { margin-right: 0; margin-bottom: 8px; }
    .urgent-news-ticker { margin: 0; }
    body.urgent-active { padding-top: 0 !important; }
}