/* Company Information Table Styles */

/* Specific company-info wrapper class to avoid conflicts */
/* .company-info-tables .table.mod-mo th[scope="col"] {
    font-size: 60%;
}

.company-info-tables .table.mod-mo th {
    font-size: 60%;
}

.company-info-tables .table.mod-mo tbody td:first-child {
    font-size: 60%;
} */

/* Responsive adjustments for very small screens */
/* @media (max-width: 360px) {
    .company-info-tables .table.mod-mo th[scope="col"],
    .company-info-tables .table.mod-mo th,
    .company-info-tables .table.mod-mo tbody td:first-child {
        font-size: 50%;
    }
} */

/* History Navigation Rule Component - Based on working .history-nav reference */
.history-nav-rule {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 15;
    padding: 1rem 0;
    margin: 1rem 0;
    list-style: none;
}

.history-nav-rule li {
    list-style: none;
}

.history-nav-rule span {
    width: 4rem; 
    height: 4rem;
    display: block; 
    cursor: pointer;
    background-repeat: no-repeat;
}

.history-nav-rule .history-year-prev {
    background-image: url(../images/btn/btn_left_active.svg);
}

.history-nav-rule .history-year-next {
    background-image: url(../images/btn/btn_right_active.svg);
}

.history-nav-rule .history-year-prev.swiper-button-disabled {
    background-image: url(../images/btn/btn_left_deactive.svg);
    opacity: 0.5;
}

.history-nav-rule .history-year-next.swiper-button-disabled {
    background-image: url(../images/btn/btn_right_deactive.svg);
    opacity: 0.5;
}

/* Mobile Styles */
@media (max-width: 720px) {
    .history-nav-rule {
        padding: 1rem;
        margin: 2rem 0;
        min-height: 5rem;
    }
    
    .history-nav-rule span {
        width: 5rem;
        height: 5rem;
        background-size: 4rem 4rem;
        background-position: center;
    }
}
