/* Global Current Task Banner */
.current-task-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #D6F3FB;
    z-index: 1050; /* Higher than menu */
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    height: 30px;
    padding-top: 2px;
}

.current-task-banner.eta-warning {
    background-color: #fff3cd;
    border-bottom-color: #ffeaa7;
}

.current-task-banner.eta-exceeded {
    background-color: #f8d7da;
    border-bottom-color: #f5c6cb;
}

.current-task-banner.eta-critical {
    background-color: #c82333;
    border-bottom-color: #c82333;
    color: #fff;
}

.current-task-banner.eta-critical strong,
.current-task-banner.eta-critical span {
    color: #fff;
}

.current-task-banner.eta-critical button {
    background-color: #881722;
    border-color: #881722;
}

.current-task-banner .btn {
    padding: 1px 10px !important;
}

.current-task-wrap {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Adjust menu position to account for banner */
.menu-wrap {
    top: 35px !important;
}

/* Adjust content padding to account for menu and banner */
.header-warp {
    padding-top: 110px !important; /* 50px (banner) + 60px (menu) */
}