/* ========================================
   值班领导表格样式
   ======================================== */

/* 表格容器 */
.duty-table-wrapper {
    width: 100%;
    border: 1px solid #b8d4f0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

/* 标题栏 - 浅蓝色 */
.duty-title {
    background: linear-gradient(180deg, #d9ecfc 0%, #c4dbf5 100%);
    color: #1a3a6e;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 12px 0;
    letter-spacing: 4px;
    border-bottom: 1px solid #a8c9eb;
}

/* 日期栏 - 深蓝色 */
.duty-date {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 2px;
    border-bottom: 1px solid #1d4ed8;
}

/* 表格基础 */
.duty-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* 单元格 */
.duty-table td {
    padding: 0;
    border-bottom: 1px solid #e8f0fe;
}

/* 数据行链接 */
.duty-table td a {
    display: block;
    padding: 14px 24px;
    font-size: 18px;
    color: #334155;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

/* 斑马纹 - 奇数行浅灰 */
.duty-table tbody tr:nth-child(odd) td a {
    background-color: #f8fafc;
}

/* 斑马纹 - 偶数行白色 */
.duty-table tbody tr:nth-child(even) td a {
    background-color: #ffffff;
}

/* 最后一行去掉底边框 */
.duty-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover 效果 */
.duty-table td a:hover {
    background-color: #dbeafe !important;
    color: #1e40af;
    font-weight: 600;
    padding-left: 32px;
}
