#cardRegistrationTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

#cardRegistrationTable thead th,
#cardRegistrationTable tbody td {
    padding: 8px 12px;
    vertical-align: middle;
    text-align: left;
}

#cardRegistrationTable thead th {
    background-color: #f8fafc;
    text-align: center;
}

/* 열 너비 설정 */
#cardRegistrationTable thead th:nth-child(1),
#cardRegistrationTable tbody td:nth-child(1) {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#cardRegistrationTable thead th:nth-child(2),
#cardRegistrationTable tbody td:nth-child(2) {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#cardRegistrationTable thead th:nth-child(3),
#cardRegistrationTable tbody td:nth-child(3) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    text-align: center;
}

#cardRegistrationTable thead th:nth-child(4),
#cardRegistrationTable tbody td:nth-child(4) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#cardRegistrationTable thead th:nth-child(5),
#cardRegistrationTable tbody td:nth-child(5) {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#cardRegistrationTable thead th:nth-child(6),
#cardRegistrationTable tbody td:nth-child(6) {
    width: auto;
    min-width: 150px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#cardRegistrationTable thead th:nth-child(7),
#cardRegistrationTable tbody td:nth-child(7) {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

#cardRegistrationTable tbody td input[type="text"],
#cardRegistrationTable tbody td input[type="date"],
#cardRegistrationTable tbody td select {
    width: 100%;
    height: 32px;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

.card-info-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.card-info-company {
    color: #1f2937;
}

.card-info-company--empty {
    color: #9ca3af;
}

.card-info-type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1;
}

.card-info-type__label {
    line-height: 1;
}

.card-type-icon {
    font-size: 0.75rem;
    line-height: 1;
}

.card-info-type--credit .card-type-icon {
    color: #ea580c;
}

.card-info-type--check .card-type-icon {
    color: #1e3a8a;
}

.card-info-type--prepaid .card-type-icon {
    color: #b45309;
}

.card-info-type--default .card-type-icon {
    color: #6b7280;
}

