@charset "UTF-8";

.eslist-content {
    background: #ffffff;
    padding: 40px 0 60px;
    min-height: 600px;
}

.eslist-content .board_wrap {
    width: 100%;
}

.eslist-filter-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.eslist-filter-wrap label {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.eslist-year-select {
    min-width: 140px;
}

.eslist-year-select select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.eslist-year-select select:focus {
    outline: none;
    border-color: #02733e;
    box-shadow: 0 0 0 3px rgba(2, 115, 62, 0.1);
}

.eslist-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
}

.eslist-table {
    width: 100%;
    min-width: 720px;
    margin: 0;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.eslist-table thead th {
    padding: 14px 12px;
    text-align: center;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.eslist-table thead th:first-child {
    border-radius: 0;
}

.eslist-table tbody td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e8e8e8;
    color: #333;
    vertical-align: middle;
}

.eslist-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.eslist-table tbody tr:hover {
    background: #f0f7f3;
}

.eslist-table .eslist-col-name {
    font-weight: 600;
}

.eslist-table .eslist-col-course {
    text-align: center;
    max-width: 360px;
    line-height: 1.45;
}

.eslist-empty-row td {
    padding: 48px 16px !important;
    text-align: center;
    color: #888;
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .eslist-filter-wrap {
        justify-content: stretch;
    }

    .eslist-year-select {
        flex: 1;
        min-width: 0;
    }
}
