.movements-check-container {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    margin: 20px 0;
}

.custom-check-container {
    display: flex;
    gap: 0 10px;
}

.custom-check-container .custom-label {
    line-height: 28px;
}

.custom-check-container .custom-check {
    width: 20px;
    height: 20px;
}

.custom-form-row {
    padding: 5px 0;
}

.btn-container {
    padding-bottom: 10px;
    border-bottom: #00000022 solid 1px;
}

.btn-container-center {
    display: flex;
    justify-content: center;
    gap: 0 10px;
}

.btn-container-end {
    display: flex;
    justify-content: end;
    gap: 0 10px;
}

.flex-container-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
}

.btn-column-container-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0 10px;
}

.btn-action {
    background: #23aae6;
    padding: 9px 7px;
    color: #FFF;
    border-radius: 2px;
    text-decoration: none;
    font-size: 11px !important;
    border: none;
}

.supports-container {
    width: 100%;
    display: grid;
    gap: 20px;
    justify-content: center;
    padding: 0 24px;
}

.image-container {
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    padding-top: 5px;
}

.custom-image {
    border-radius: 16px;
}

.files-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.file-container {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.form-update-button {
    position: absolute; 
    top: calc(50% - 6px); 
    right: 8px;
    background: #23aae6; 
    border: none;
    border-radius: 50%;
    width: 32px; 
    height: 32px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex; 
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.form-close-update-button {
    position: absolute;
    top: calc(50% - 6px); 
    right: 8px;
    background: #f44336; 
    border: none;
    border-radius: 50%; 
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-action {
    background: transparent;
    color: #23aae6 !important;
    border: solid 1px #23aae6;
}

.title-container {
    padding: 5px;
    border-bottom: solid 1px #00000022;
}

.font-size-10 {
    font-size: 10px;
}

.text-secondary-table {
    color: #c7dbf7;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
}

.flex-container-center-start {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 10px;
}

.table-header-cell {
    background-color: black; 
    color: white;
    font-size: 12px; 
    text-align: center;
    padding: 5px;
    border-radius: 5px;
}

.table-spacing {
    border-collapse: separate;
    border-spacing: 10px;
}

.table-without-scroll .fixed-table-container .fixed-table-body {
    overflow: hidden !important;
}

.input-md {
    width: 150px;
}