.schedule-results {
    padding: 10px;
}

.schedule-results h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.year-links {
    list-style: none;
    padding: 0;
}

.year-links li {
    margin-bottom: 2px;
    border-radius: 5px;
    color: #2f23dc;
}

.year-links li a {
    display: block;
    padding: 5px 12px;
    transition: 0.2s ease, color 0.2s ease;
}

.year-links li a:hover {
    background-color: #e9f2ff;
    color: #007bff;
}

.schedule {
    text-align: center; /* 全体の中央寄せ */
    padding: 20px 0 0 0;
}
  
.schedule-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pdf-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
    border: 2px double #dc3545; 
    border-radius: 25px;
    padding: 10px 25px;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.pdf-link a:hover {
    background-color: #dc3545;
    color: #fff;
}

.pdf-icon {
    font-size: 1.2em;
}
.tournament-info {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 11px;
    width: 90%;
    height: auto;
    max-width: 800px; /* 最大幅を設定 */
    margin: 20px auto;
}

.tournament-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    text-align: left;
}
@media screen and (min-width: 1000px) {
    .tournament-name {
        font-size: 18px;
        font-weight: 600;
    }
}
.info-label {
    display: inline-block;
    background-color: #333;
    color: #eee;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 400;
    width: auto;
}

.details {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap; /* 幅が狭い場合に折り返す */
    gap: 15px 20px; /* 行と列のギャップ */
}

.detail-item {
    display: flex;
    align-items: flex-start;
}

.info-item {
    display: flex;
    flex-direction: column;
    color: blue;
}
.info-item a:hover {
    color: #0077cc;
}
.info-item a {
    text-align: left;
}

.value {
    color: #333;
    font-weight: 500;
}
