:host {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

#container {
    width: 40%;
    box-shadow: 5px 5px 4px rgba(19, 19, 19, 0.5);
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

#header {
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
    height: 70px;
    padding: 0 30px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
}

#content {
    flex-grow: 1;
    padding: 30px;
    font-size: 18px;
}

#actions {
    display: flex;
    justify-content: flex-end;
    height: 50px;
    gap: 20px;
    padding: 20px;
}

#actions button {
    padding: 5px 30px; /* Ajuste o padding conforme necessário */
    background-color: cornflowerblue;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#actions button.cancel {
    background-color: #cf3d3d;
    border: 1px solid #fff;
    color: #fff;
}