.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #f8f9fa;
    height: 100%;
}

.form-section h5 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #0d6efd;
}
.table th {
    background-color: #3C6DB2;
    color: #fff;
}

.two-column-layout {
    display: flex;
    gap: 2rem;
}

.two-column-layout>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.description-textarea {
    resize: vertical;
    min-height: 38px;
    height: 38px;
}

.form-control,
.form-select {
    min-height: 38px;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

.sticky-col-left {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #7987a1 !important;
}

.sticky-col-right {
    position: sticky;
    right: 0;
    z-index: 10;
    background-color: #7987a1 !important;
}