.popup {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     width: 50rem;
    padding: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #80808036;
}
.popup img {
    width: 70px;
    margin-bottom: 20px;
}
.popup h1 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 10px;
}
.popup p {
    font-size: 16px;
    margin: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: end;
}
.popup button {
    background-color: #4caf72;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
}
.popup button:hover {
    background-color: #45a162;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.container1 {
    max-width: 800px;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.matches {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.section {
    width: 45%;
}
.match-list {
    list-style-type: none;
    padding: 0;
}
.match-list li {
    background-color: #e0f7fa;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: justify;
}
