﻿.ep-align-right {
    text-align: right !important;
}

/*added by rohit 02/03/2026. for ebs_Team_Board*/
/* The Card Cell */
.route-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 10px;
    min-width: 160px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-top: 4px solid #cbd5e0; /* Default Gray */
}

/* Status Logic */
.ontime {
    border-top-color: #48bb78;
    background-color: #f0fff4;
}

.late {
    border-top-color: #f56565;
    background-color: #fff5f5;
}

.delayed {
    border-top-color: #ed8936;
    background-color: #fffaf0;
}

/* Top Row: Time + DE Box */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-display {
    display: flex;
    flex-direction: column;
}

.label-tiny {
    font-size: 1.2rem;
    font-weight: bold;
    color: #718096;
    padding-bottom: 4px;
}

.time-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
}

.delta-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #a0aec0;
}

/* The D/E Widget */
.de-widget {
    display: flex;
    gap: 8px;
    background: #edf2f7;
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.de-item {
    text-align: center;
    line-height: 1;
}

.de-label {
    font-size: 1rem;
    color: #3182ce; /* Blue label */
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

.de-num {
    font-size: 1rem;
    color: #9b2c2c; /* Dark Red number */
    font-weight: 800;
}

/* Exception Column Styling */
.ex-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
}

.ex-total {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d3748;
}

.ex-grid {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ex-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding: 0 10px; /* add space from separator */
}

.ex-item:last-child {
    border-right: none;
}
.unresolved {
    color: red;
}

/*By simran For Testing*/
/* Container to keep everything inline and vertically centered */
.live-status-bar {
    display: inline-flex;
    align-items: center;
    gap: 15px;

}

/* Live Badge Styling */
.status-badge.live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff0f0;
    color: #d9534f; /* Matches standard danger red */
    border: 1px solid #ebccd1;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background-color: #d9534f;
    border-radius: 50%;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Date, Time, and Cycle Text */
.status-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.info-text {
    color: #333;
}

.icon {
    font-size: 13px;
    margin: 0 4px;
}

/* Subtle vertical divider */
.separator {
    width: 1px;
    height: 18px;
    background-color: #ccc;
}

/* Button styled to match your existing blue UI buttons (Search/Clear) */
.btn-primary-outline {
    background-color: #fff;
    color: #337ab7; /* Matches your 'Search' button blue */
    border: 1px solid #337ab7;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

    .btn-primary-outline:hover {
        background-color: #337ab7;
        color: #fff;
    }
/*end by rohit*/