/* Company Info Page Styles */

.company-info-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 500px;
}

/* Column Layout */
.column-wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.column-title {
    font-size: 1.3rem;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e9ecef;
    text-align: left;
    position: relative;
    text-transform: uppercase;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

/* Year Tabs */
.year-tabs-wrapper {
    margin-bottom: 30px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.year-tab {
    background: #e9ecef;
    color: #495057;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.year-tab:hover {
    background: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.year-tab.active {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Year Content */
.year-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Sections */
.info-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: none;
}

.info-section:hover {
    box-shadow: none;
    transform: none;
}

.info-section-title {
    font-size: 1.4rem;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.info-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    margin-bottom: 15px;
}

.info-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-link:hover {
    background: #e9ecef;
    border-left-color: #0066cc;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-text {
    flex: 1;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* File type colors */
.file-icon-pdf {
    color: #dc3545;
}

.file-icon-word {
    color: #2b579a;
}

.file-icon-excel {
    color: #217346;
}

.file-icon-image {
    color: #8e44ad;
}

.file-icon-archive {
    color: #f39c12;
}

.info-link:hover .file-icon {
    transform: scale(1.1);
}

.info-link:hover .info-text {
    color: #0066cc;
}

.info-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
    padding: 5px 12px;
    background: #ffffff;
    border-radius: 5px;
}

.info-link:hover .info-date {
    background: #0066cc;
    color: #ffffff;
}

.info-link:hover .info-date {
    background: #0066cc;
    color: #ffffff;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 991px) {
    .column-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 40px 0;
    }

    .column-wrapper {
        padding: 20px;
    }

    .column-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .year-tabs-wrapper {
        padding: 0;
    }

    .year-tabs {
        gap: 6px;
    }

    .year-tab {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 60px;
    }

    .info-section {
        padding: 0;
        margin-bottom: 0;
    }

    .info-section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .info-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .info-text {
        padding-right: 0;
        font-size: 0.95rem;
        gap: 10px;
    }

    .file-icon {
        font-size: 1.1rem;
    }

    .info-date {
        align-self: flex-end;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .year-tab {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 60px;
    }

    .info-text {
        font-size: 0.9rem;
        gap: 8px;
    }

    .file-icon {
        font-size: 1rem;
    }

    .column-title {
        font-size: 1.1rem;
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.text-muted {
    color: #6c757d;
    font-size: 1rem;
    text-align: center;
    padding: 30px;
}

/* Print Styles */
@media print {
    .year-tabs-wrapper {
        display: none;
    }

    .info-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }

    .info-link {
        border: 1px solid #e9ecef;
    }

    .info-link:hover {
        transform: none;
        box-shadow: none;
    }
}
