.time-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.time-icon i {
    font-size: 18px;
    color: #ffffff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-approved {
    background-color: #d1fae5;
    color: #065f46;
}

.status-rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-default {
    background-color: #f1f5f9;
    color: #475569;
}

.clocked-in-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background-color: #dbeafe;
    color: #1e40af;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background-color: #fef3c7;
    color: #92400e;
}

.flag-badge i {
    font-size: 10px;
}

.employee-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #059669;
    color: #fff;
    border-radius: 12px;
    padding: 2px 8px 2px 10px;
    font-size: 12px;
}

.chip-remove {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 2px;
    font-size: 10px;
    opacity: 0.8;
}

.chip-remove:hover {
    opacity: 1;
}

/* Overtime pill on a pending allocation row in the Add Time Entry modal. Same rule as
   operations/timesheets/detail.css — an allocation has to read identically whether it is
   being drafted here or listed on the entry it ends up on. */
.ot-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    background-color: #fef3c7;
    color: #92400e;
}
