.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dialog-content {
    background-color: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid white;
    overflow-y: auto;
    max-height: 70%;
    max-width: 70%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: Arial, Helvetica, sans-serif;
}

.dialog-content h2 {
    margin-top: 0;
    color: #f1c40f;
}

.dialog-content p {
    font-size: 15px;
    line-height: 1.4;
}