/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.header {
    font-size: 1.8em;
    font-weight: bold;
    color: #004085;
    margin-bottom: 30px;
    padding: 10px 0;
    text-align: left;
    /* border-bottom: 3px solid #004085; */
}

/* リンクリストのスタイル */
.report-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.report-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.report-link {
    display: block;
    padding: 15px;
    font-size: 1.2em;
    background-color: #004085;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 70%;
    /* margin: 0 auto; */
}
.report-link:hover {
    background-color: #003366;
}

/* CSVボタンのスタイル */
.csv-button {
    font-size: 0.9em;
    padding: 10px;
    color: #ffffff;
    background-color: #6c757d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}
.csv-button:hover {
    background-color: #5a6268;
}

.send_button{
    font-size: 0.9em;
    padding: 10px;
    color: #ffffff;
    background-color: #6c757d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.header_button{
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #004085;
    align-items: center; /* Optional: Align items vertically in the center */
    margin-bottom: 30px;
    border-bottom: 3px solid #004085; 
}

#loading {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
}

/* モバイル対応 */
@media (max-width: 600px) {
    .report-link {
        font-size: 1em;
        padding: 10px;
        width: 65%;
    }
    .csv-button {
        font-size: 0.8em;
        padding: 8px;
    }
}