#alertDialog[open] {
    background-color: #f5f5f5;
    border-radius: 5px;
    width: 300px;
    display: flex;
    flex-direction: column;
}
#alertDialog p {
    text-align: center;
}
#alertMsgP {
    font-weight: bold;
}
#alertBtn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}
#alertBtn:hover {
    background-color: #45a049;
}