/* ================================================
   IR Section
   ================================================ */
.table-responsive {
    overflow-x: auto;
}

.ir-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.ir-table th,
.ir-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    text-align: center;
}

.ir-table th + th,
.ir-table td + td {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.ir-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.ir-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.ir-highlight td {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
}

.board-search {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: flex-end;
}

.board-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 14px;
    color: var(--text-mid);
}

.board-search-input {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.board-search-input input {
    padding: 10px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    width: 240px;
}

.board-search-input button {
    padding: 10px 16px;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
}

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

.board-table th,
.board-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    text-align: center;
}

.board-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    border-top: 2px solid var(--primary);
}

.board-table td:nth-child(3) {
    text-align: left;
}

.board-table td:nth-child(3) a {
    color: var(--text-dark);
    transition: color 0.2s;
}

.board-table td:nth-child(3) a:hover {
    color: var(--primary);
}

.board-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    border-radius: 2px;
    font-weight: 600;
}

.board-paging {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.stockholder-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-light);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    font-size: 14px;
    color: var(--text-mid);
    padding: 6px 0 6px 16px;
    position: relative;
    border-bottom: 1px dotted var(--border);
    line-height: 1.6;
}

.info-card ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
}

@media (max-width: 1200px) {
    .stockholder-info {
        grid-template-columns: 1fr;
    }
}
