/* Dialog Styling */
dialog {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

dialog h3 {
    margin-top: 0;
    color: #4caf50;
}

dialog p {
    margin-bottom: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

dialog button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 4px;
}

dialog button:hover {
    background-color: #45a049;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: grey;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
