.selector-form {
    margin: 10px 0 20px;
    padding: 20px;
    border: 2px solid #0077cc;
    border-radius: 10px;
    background-color: #f7faff;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    font-size: 14pt;
    flex-wrap: wrap;        
}

.selector-form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    min-width: 150px;
}

.selector-form select {
    margin-top: 5px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}

.selector-form button {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 5px;
}

.selector-form button:hover {
    background: #005fa3;
}

.summary-table,
.highlight-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.summary-table th,
.summary-table td,
.highlight-table th,
.highlight-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.summary-table th,
.highlight-table th {
    background-color: #0077cc;
    color: white;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
}

.game-card img {
    width: 144px;
    height: 192px;
    object-fit: cover;
    margin-bottom: 10px;
}

h2 {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #ff6699;
    padding-left: 10px;
    margin-bottom: 16px;
}