﻿.ShInfo {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
}

.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    color: #2c3e91;
}

#yearSelect {
    padding: 6px 10px;
    font-size: 16px;
}


.yearSelect {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 50px 12px 25px;
    font-size: 18px;
    color: #111827; /* 字體顏色 */
    background-color: #f9fafb; /* 背景白淡灰 */
    border: 1px solid #d1d5db; /* 細邊框 */
    border-radius: 6px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

    .yearSelect:focus {
        outline: none;
        border-color: #3b82f6; /* focus 時的藍色邊框 */
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
    }



.divider {
    height: 4px;
    background-color: #69B4FF;
    border: none;
    margin: 16px 0;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .report-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 8px;
        border-bottom: 1px solid #e0e0e0;
        font-size: 18px;
    }

        .report-list li a {
            text-decoration: none;
            color: inherit;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

    .report-list img {
        height: 25px;
    }

.file-icon {
    margin-right: 8px;
}

.download-icon {
    font-size: 18px;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    #yearSelect {
        margin-top: 10px;
        width: 100%;
    }

    .report-list li {
        flex-direction: row;
        justify-content: space-between;
    }
}

.ShInfo-tab-btn {
    padding: 8px 16px;
    margin-right: 8px;
    background-color: white;
    color: #233d6e;
    border: 1px solid #233d6e;
    border-radius: 4px;
    cursor: pointer;
}

    .ShInfo-tab-btn.active {
        background-color: #233d6e;
        color: white;
    }

.ShInfo-tab-content {
    display: none;
}

.ShInfo-tab-content.active {
    display: block;
}


/*每月報表*/

.section {
    margin: 20px auto;
    width: 60%;
}

    .section h2 {
        color: #34495e;
        font-size: 18px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .file-item:hover {
        background-color: #f2f2f2;
    }



    .file-item img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .file-item .file-name {
        font-size: 16px;
        color: #34495e;
    }

    .file-item .file-action {
        display: flex;
        align-items: center;
    }

        .file-item .file-action a {
            text-decoration: none;
            color: #007bff;
            font-size: 14px;
            font-weight: bold;
        }

            .file-item .file-action a:hover {
                text-decoration: underline;
            }

    .file-item .arrow {
        margin-left: 10px;
        font-size: 16px;
        color: #007bff;
    }
