/* Styles for the overlay (background) */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
}

/* Styles for the dialog box */
.dialog {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

button.overlayBtnCreate {
    float: left;
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    background-color: #007b55;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button.overlayBtnDelete {
    float: left;
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    background-color: #f04444;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button.overlayBtnCancel {
    float: left;
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 10px;
    border: none;
    background-color: #444444;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

