/* static/modal_dialog.css */

/*  ======================= */
/*  CSS-only modal dialog   */
/*  ======================= */

dialog {
    border: none;
    border-radius: 8px;
    padding: 20px;
    background-color: #333;
    color: #fff;
    max-width: 500px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

dialog h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

dialog ul {
    padding-left: 20px;
}

dialog button {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #E5A028;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

dialog button:hover {
    background-color: #d49426;
}

