/* 정보 테이블 (상세 페이지용) */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d1d5db;
    overflow: hidden;
    font-size: 12px;
    border-top: 2px solid black;
}

.info-table thead tr:first-child {
    border-bottom: 1px solid black;
}


.info-table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 12px;
    text-align: left;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
    vertical-align: middle;
    height: 36px;
}

.info-table td {
    padding: 8px 12px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    height: 36px;
}

.info-table th:last-child,
.info-table td:last-child {
    border-right: none;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table .form-input,
.info-table .form-select {
    width: 100%;
    margin: 0;
    height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
}

.info-table .form-input:focus,
.info-table .form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.info-table .form-input:read-only {
    background-color: #f9fafb;
    cursor: not-allowed;
}

.info-table .radio-group {
    margin: 0;
}

.box-footer {
    margin-top: 10px;
    text-align: right;
    padding: 10px 15px 15px;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.box-footer {
    margin-top: 10px;
    text-align: right;
}

.radio-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
    white-space: nowrap;
}

/* ===== 공통 툴팁 스타일 ===== */
.tooltip-cell {
    position: relative;
    cursor: pointer;
}

.tooltip-cell .tooltip-text {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tooltip-cell:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    padding: 6px 12px;
    background: #ffffff;
    color: #333333;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    pointer-events: none;
}

.tooltip-cell:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    margin-bottom: 0;
    border: 5px solid transparent;
    border-top-color: #d0d0d0;
    z-index: 1001;
    pointer-events: none;
}

