#create-template-modal-wrapper {
    display: none;  
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
}


#create-template-modal {
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 999;
}

.modal-dialog {
    width: 700px;
    max-width: none;
}

.temp_form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; 
}

.temp_form >div {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.thead-dark {
    background: grey;
}

.template-table>tbody>tr>td {
    padding: 7px;
}

.attachment_icon_wrapper {
    display: flex;
    flex-direction: row !important;
    gap: 2px;
}
.attachment_icon {
    position: relative;
    width: 50px;
}

.attachment_icon>icon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: none;
}

.attachment_icon>.file_icon {
    width: 50px;
    height: 50px;
    background-color: rgb(128, 128, 255);
    display: flex;
    align-items: flex-end;
}
