.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: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 20px;
}

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

.weekly-summary {
    padding: 20px 30px;
    border-radius: 12px;
    background: #f0f8ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 100%;
    font-size: 14pt;
    border: 2px solid #0077cc;
}

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

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

.game-card img {
    width: 144px;
    height: 192px;
    border-radius: 4px;
}

.data-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 800px;
}

.data-table th {
    background-color: #0077cc;
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    text-align: center;
}

.data-table td {
    border: 1px solid #ccc;
    padding: 10px 14px;
    text-align: center;
    background-color: #ffffff;
    font-size: 13px;
}

.data-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

button {
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: #005fa3;
}

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