body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 축구장 잔디 사진 배경 */
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=2000&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* 배경 사진이 잘 보이도록 투명도 조정 */
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    max-height: 80vh;
    overflow-y: auto;
}

h1 {
    margin-bottom: 0.5rem;
}

.location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.result {
    font-size: 1.1rem;
}

.day-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}
