body { font-family: 'Pretendard', sans-serif; background-color: #f0f2f5; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; }
.container { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; width: 95%; max-width: 550px; }
h1 { color: #d32f2f; margin-bottom: 5px; }
.info { color: #666; font-size: 0.85rem; margin-bottom: 25px; line-height: 1.5; }
.lotto-row { display: flex; justify-content: space-between; align-items: center; background: #fafafa; border: 1px solid #eee; padding: 15px; margin-bottom: 12px; border-radius: 12px; }
.row-label { font-weight: bold; color: #999; width: 35px; text-align: left; }
.balls-container { display: flex; gap: 8px; align-items: center; }
.ball { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.9rem; background: white; border: 2px solid #ccc; color: #333; }
.powerball { background: #e74c3c !important; color: white !important; border-color: #c0392b !important; margin-left: 8px; position: relative; }
.powerball::before { content: "PB"; position: absolute; top: -15px; font-size: 0.6rem; color: #e74c3c; font-weight: bold; }
button { margin-top: 20px; padding: 15px 40px; font-size: 1.1rem; background-color: #d32f2f; color: white; border: none; border-radius: 10px; cursor: pointer; font-weight: bold; transition: 0.2s; }
button:hover { background-color: #b71c1c; }
.status-msg { margin-top: 15px; font-size: 0.8rem; color: #27ae60; font-weight: bold; }
.lotto-row.filtered-game {
    background: #ffebee; /* Light red background for filtered games */
    border-color: #ef9a9a;
}
.search-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
#search-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
#search-btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
#search-btn:hover {
    background-color: #555;
}
.search-results-container {
    margin-top: 20px;
    text-align: left;
}