table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem auto;
    border: 1px solid #ddd;
    background-color: white;
}

img {
    width: 50px;
    height: 50px;
}

/* 테이블 행 */
th {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

td {
padding: 3px;
text-align: center;
border-bottom: 1px solid #ddd;
}

th {
    background-color: #1b1b1b;
    color: #ddd;
}

/* 테이블 올렸을 때 */
tbody tr:hover {
    background-color: #d3d3d3;
    opacity: 0.9;
}

/* 테이블 비율 */
th:nth-child(1),
td:nth-child(1) {
    width: 1%;
}

th:nth-child(2),
td:nth-child(2) {
    width: 1%;
}

th:nth-child(3),
td:nth-child(3) {
    width: 15%;
}

th:nth-child(4),
td:nth-child(4) {
    width: 15%;
    text-align: left;
}

th:nth-child(5),
td:nth-child(5) {
    width: 68%;
    text-align: left;
}