.dialog-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4A3728;
    outline: 10px solid #80471C;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-align: center;
    color: white;
}

.dialog-box button {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #532915;
    color: white;
    cursor: pointer;
}

.dialog-box button:hover {
    background-color: #5E2C04;
}