body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: skyblue;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.now {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.now img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.days {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;
}

.day {
    background: #eee;
    border-radius: 6px;
    padding: 5px;
    margin: 3px;
    width: 60px;
    text-align: center;
}

.day img {
    width: 35px;
    height: 35px;
}

button {
    margin-top: 12px;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background: green;
    color: white;
    cursor: pointer;
}
button:hover {
    background: darkgreen;
}
