/* Confirm Action Modal Containers */
/* ==================== */

/* Buttons */
/* ==================== */
/* Button to confirm action */

.confirm_action_modal .confirmation-button-delete,
.confirm_action_modal .confirmation-button{
    height: 40px;
    color: white;
    padding: 8px 10px;
    background: #cccccc;
    cursor: not-allowed;
    border-color: #296d98;
    border: 0px;
    font-size: 14px;
    border-radius: 4px;
    min-width: 115px;
    margin-bottom: 15px;
}
div#metrics .confirm_action_modal .confirmation-button:enabled {
    background-color: #ca483f;
    cursor: pointer;
}
div#metrics .confirm_action_modal .confirmation-button:enabled:hover{
    background-color: #ca483f !important;
}
div#models .confirm_action_modal .confirmation-button:enabled {
    background-color: #ca483f;
    cursor: pointer;
}
div#models .confirm_action_modal .confirmation-button:enabled:hover{
    background-color: #ca483f !important;
}
.confirm_action_modal .confirmation-button-delete:enabled{
    background-color: #ca483f !important;
    cursor: pointer;
}
.confirm_action_modal .confirmation-button-delete:enabled:hover{
    background-color: #ca483f !important;
}
.confirm_action_modal .confirmation-button:enabled {
    background-color: #296d98;
    cursor: pointer;
}
/* Make the button grey when disabled */
.confirm_action_modal .confirmation-button-delete:disabled,
.confirm_action_modal .confirmation-button:disabled{
    background: #cccccc !important;
    cursor: not-allowed;
}

/* Inputs */
/* ==================== */
/* Base input styles */
.confirm_action_modal input{
    height: 35px;
    padding: 8px 15px;
    width: 100%;
    margin-right: 10px;
    margin-bottom: 25px;
    border: 1px solid black;
    border-radius: 5px;
}
/* Input style to create a pseudo header style on the modal */
.confirm_action_modal .question-header{
    margin-bottom: 25px;
    font-size: 15px;
    padding: 0;
    font-weight: 400;
    color: #000;
}
/* Input style to plain text */
.confirm_action_modal .confirmation-text{
    margin-bottom: 25px;
    font-size: 15px;
    text-align: left;
    padding: 0;
    line-height: 1.3;
    color: #000;
}
#button-left-aligned{
    text-align: right;
}