body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    background-image: url('./background.jpg');
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 2em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    color: white;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.button-container button {
    font-size: 1.2em;
    padding: 15px 30px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    max-width: 250px;
    transition: background-color 0.3s, transform 0.3s;
}

.button-container button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.confirm-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.confirm-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    max-width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.confirm-box p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
}

.confirm-buttons button {
    font-size: 1em;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    box-sizing: border-box;
    transition: background-color 0.3s, transform 0.3s;
}

.confirm-buttons button.yes {
    background-color: #007bff;
    color: white;
}

.confirm-buttons button.yes:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.confirm-buttons button.no {
    background-color: #dc3545;
    color: white;
}

.confirm-buttons button.no:hover {
    background-color: #a71d2a;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
        margin-top: 30px;
    }
    .button-container {
        max-width: 100%;
    }
    .confirm-box {
        width: 80%;
    }
}
