 body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Grayout-Hintergrund */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Message Box */
.message-box {
    background-color: #000;
    color: #fff;
    width: 70vw;
    height: 60vh;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
   	border: 2px solid #666; 
	box-shadow: 2px 2px 8px rgba(200, 200, 200, 0.5);	
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.message-title {
    display: flex;
    font-size: 2em;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    padding-top:15px;
}

.message-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2em;
    padding: 10px;
}

.message-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 15px;
}

.message-buttons button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 100px;
}

.ok-button {
    background-color: #28a745;
    color: white;
}

.cancel-button {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 600px) {
    .message-box {
        width: 90vw;
        height: auto;
    }
}