#beefWarningDialog,
#beefWarningDialog *,
#beefWarningDialog *::before,
#beefWarningDialog *::after {
    box-sizing: border-box;
}


#beefWarningDialog {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200000;
    background: #030303;

    height: 900px;
    width: 700px;
    font-family: consolas, monospace;
    border: 5px solid #555;
}

#beefWarningDialogHeader {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 32px;
    border-bottom: 5px solid #555;
}

#beefWarningDialogHeaderLeft {
    padding-left: 20px;
}

#beefWarningDialogHeaderRight {
    padding-right: 20px;
}

#beefWarningDialogBody {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
}

#beefWarningDialogBeefsContainer {
    width: 95%;
    border: 5px solid #555;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    max-height: 672px;
    overflow: auto;
}

.beef-warning-dialog-beef {
    display: flex;
    flex-direction: column;

}

.beef-warning-dialog-beef-header {
    font-size: 24px;
    font-weight: 1000;
    padding: 10px;
}

.beef-warning-dialog-beef-text {
    font-size: 20px;
    padding: 0px 10px 10px 10px;
    border-bottom: 3px solid #555;
    backgroun-color: #121212;
}

#beefWarningDialogFooter {
    height: 10%;
    border-top: 5px solid #555;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

#beefWarningDialogAddButton,
#beefWarningDialogCancelButton {
    height: 50px;
    width: 195px;
    font-size: 40px;
    font-weight: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#beefWarningDialogAddButton:hover,
#beefWarningDialogCancelButton:hover {
    opacity: 0.6;
}

#beefWarningDialogAddButton {
    background-color: green;
}

#beefWarningDialogCancelButton {
    background-color: red;
}
