/* استایل برای نمایش خروج خودکار */

.auto-exit {
    background-color: #fff3cd !important;
    border-left: 4px solid #ffc107 !important;
}

.auto-exit .badge {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.auto-exit td {
    color: #856404 !important;
}

/* آیکون برای خروج خودکار */
.auto-exit-icon {
    color: #ffc107;
    margin-left: 5px;
}

.auto-exit-badge {
    background-color: #ffc107;
    color: #212529;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 5px;
}

/* تولتیپ برای توضیح خروج خودکار */
.auto-exit-tooltip {
    position: relative;
    cursor: help;
}

.auto-exit-tooltip:hover::after {
    content: "خروج سیستمی - 30 دقیقه بعد از پایان شیفت";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}