@charset "UTF-8";

.international-rate-table-container {
    max-height: 350px; /* 스크롤 최대 높이 */
    overflow-y: auto;
    border: 1px solid #ccc; /* 테두리 */
}

.international-rate-table {
    width: 100%;
    border-collapse: collapse;
}

.international-rate-table thead {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.international-rate-table th, .international-rate-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.international-rate-table th {
    background-color: #f8f8f8;
}

.international-rate-table th:nth-child(1), .international-rate-table td:nth-child(1) {
    text-align: center; /* 국기 중앙 정렬 */
    width: 50px;
}

.international-rate-table th:nth-child(2), .international-rate-table td:nth-child(2),
.international-rate-table th:nth-child(3), .international-rate-table td:nth-child(3) {
    text-align: left; /* 국가명 왼쪽 정렬 */
}

.international-rate-table th:nth-child(4), .international-rate-table td:nth-child(4) {
    text-align: right; /* 요금 오른쪽 정렬 */
}
