/* =============================================
   MSB Major Shareholders Element
   ============================================= */

.msb-ms-wrap {
    padding: 32px 0;
}

.msb-ms-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
}

.msb-ms__title {
    font-size: 26px;
    font-weight: 700;
    color: #091E42;
    margin: 0 0 20px;
    line-height: 36px;
}

/* ---- Date select ---- */
.msb-ms__date-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.msb-ms__date-label {
    font-size: 14px;
    color: #3D4F6B;
    font-weight: 500;
}

.msb-ms__date-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.msb-ms__date-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #DEE5EF;
    border-radius: 8px;
    padding: 10px 44px 10px 16px;
    font-size: 15px;
    color: #091E42;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    min-height: 44px;
    margin-bottom: 0;
    box-shadow: none;
}

.msb-ms__date-select:focus {
    border-color: #0d1b3e;
}

.msb-ms__date-select-icon {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: #3D4F6B;
    display: flex;
    align-items: center;
}

/* ---- Table ---- */
.msb-ms__table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #DEE5EF;
}

.msb-ms__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 700px;
    margin-bottom: 0px !important;
}

.msb-ms__table thead tr {
    background: #0d1b3e;
}

.msb-ms__table thead th {
    padding: 14px 16px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.msb-ms__table thead th:last-child {
    border-right: none;
}

.msb-ms__table tbody tr {
    border-bottom: 1px solid #DEE5EF;
    transition: background 0.15s;
}

.msb-ms__table tbody tr:last-child {
    border-bottom: none;
}

.msb-ms__table tbody tr:hover {
    background: #f0f4fb;
}

.msb-ms__table tbody td {
    padding: 14px 16px;
    color: #3D4F6B;
    vertical-align: middle;
}

.msb-ms__table tbody td:first-child {
    color: #091E42;
    font-weight: 500;
    text-align: center;
    width: 56px;
}

.msb-ms__empty {
    text-align: center;
    color: #888;
    padding: 24px;
}

/* ---- Footer note ---- */
.msb-ms__footer-note {
    margin-top: 16px;
    font-size: 13px;
    color: #5A6A80;
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .msb-ms__title {
        font-size: 20px;
    }

    .msb-ms__table {
        font-size: 13px;
    }

    .msb-ms__table thead th,
    .msb-ms__table tbody td {
        padding: 10px 10px;
    }
}
