body {
    font-family: 'Noto Sans Kr', sans-serif;
    background-color: #f7f9fc;
}

.table-container {
    overflow-x: auto;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

thead th {
    background-color: #dce6f0;
    text-align: center;
    padding: 10px 6px;
    font-weight: 600;
    border-bottom: 2px solid #aabbd0;
}

tbody td {
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

tbody tr:nth-child(even) {
    background-color: #f5f7fa;
}

td:empty {
    background-color: #fff;
}

td::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
}

td:contains('✅') {
    color: green;
}

.fa-file-excel {
    font-size: 16px;
    color: #217346;
}