.banner__inner {
    background-image: url("/assets/images/ability/banner.png");
}
.text-success-custom{
    color:#34C759;
}
.overview-filter__inner {
    margin: 30px 0;
}

.overview-process__item-header {
    margin: 15px 0 10px;
}

.--overview-process {
    position: relative;
    display: block;
}

.--overview-process img {
    width: 100%;
}

.--overview-process span {
    content: "";
    background-color: var(--color-blue-7);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--w);
    border-radius: 15px;
}

.input-group-append span {
    border-radius: 0 10px 10px 0;
}

.overview-process__content {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 30px;
}

.overview-process__content::-webkit-scrollbar {
    /* width: 12px; */
    background-color: #8BA6F6;
}

.overview-process__content::-webkit-scrollbar-thumb {
    background-color: #AEBFFF;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

.overview-process__content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 6px;
}

/* Custom scrollbar for Firefox */
.overview-process__content {
    scrollbar-width: auto;
    scrollbar-color: #AEBFFF #D5E0FC;
}

.overview-process__inner {
    margin-bottom: 60px;
}

.overview-filter__form label {
    color: #1F3B64;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.overview-filter__form input,
.overview-filter__form select {
    color: #1F3B64;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    height: 65px;
    border-radius: 10px;
}

.overview-table .table {
    border-radius: 6px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dee2e6;
}

.overview-table .table thead th {
    border-top: none;
    border-right: none;
    background-color: #f8f9fa;
}

.overview-table .table th,
.overview-table .table td {
    border: 1px solid #dee2e6;
    border-top: none;
    border-left: none;
    vertical-align: middle;
}

.overview-table .table th:last-child,
.overview-table .table td:last-child {
    border-right: none;
}

.overview-table .table tr:last-child td {
    border-bottom: none;
}

table thead {
    background: #F8FAFC;
}

a:not(.cancel-learning).btn-gradient {
    font-size: 14px;
}

.overview-table .table th,
.overview-table .table td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.overview-table .table td {
    font-size: 14px;
    color: #1F2937;
}

/* Prevent wrapping for specific short header like STT */
.overview-table .table th:first-child {
    white-space: nowrap;
    min-width: 50px;
    text-align: center;
}

/* Mobile/tablet fix: force nowrap with horizontal scroll */
@media (max-width: 991.98px) {

    .overview-table .table th,
    .overview-table .table td {
        white-space: nowrap;
        word-break: keep-all;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}