.form-asap-translation table th:first-child {
    min-width: 155px !important;
    max-width: 100%;
    text-wrap: auto;
    width: 10px;
}


/* Language toggle buttons at top */
.btn-language-toggle {
    transition: all 0.3s ease;
    border: 2px solid #D1C4E9;
    margin: 2px;
}

.btn-language-toggle.active {
    background-color: #EDE7F6;
    border-color: #D1C4E9;
    color: #4527A0;
}

.btn-language-toggle.active:hover {
    background-color: #D1C4E9;
    border-color: #B39DDB;
    color: #4527A0;
}

.btn-language-toggle:not(.active) {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.btn-language-toggle:not(.active):hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

/* Icon toggle logic */
.btn-language-toggle.active .icon-checked {
    display: inline-block;
}

.btn-language-toggle.active .icon-unchecked {
    display: none;
}

.btn-language-toggle:not(.active) .icon-checked {
    display: none;
}

.btn-language-toggle:not(.active) .icon-unchecked {
    display: inline-block;
}

/* Smooth transition for hiding columns */
.language-column {
    transition: opacity 0.2s ease;
}

.language-column.d-none {
    display: none !important;
}