.logos-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 cột cho mỗi hàng */
    gap: 0; /* Khoảng cách giữa các ô */
    border: 1px solid #D9D9D9; /* Border bao quanh toàn bộ container */
    border-collapse: collapse; /* Loại bỏ sự nhân đôi border */
}

.img-logo-du-an {
    border-top: 1px solid #D9D9D9; /* Chỉ thêm border-top và border-left */
    border-left: 1px solid #D9D9D9;
    display: flex;
    justify-content: center; /* Canh giữa hình ảnh theo chiều ngang */
    align-items: center; /* Canh giữa hình ảnh theo chiều dọc */
    padding: 10px;
    background: #fff;
    z-index: 9;
    position: relative; /* Để sử dụng pseudo-element */
    width: 100%;
}

.img-logo-du-an:nth-child(-n+7) {
    border-top: none; /* Loại bỏ border-top cho hàng đầu tiên */
}

.img-logo-du-an:nth-child(7n+1) {
    border-left: none; /* Loại bỏ border-left cho cột đầu tiên của mỗi hàng */
}

.img-logo-du-an img {
    max-height: 60px;
}

.img-logo-du-an,
.img-logo-du-an.active-logo {
    box-sizing: border-box;
}

/* Sử dụng ::after để tạo viền màu cam khi phần tử được active */
.img-logo-du-an.active-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid orange; /* Màu cam và độ dày viền */
    box-sizing: border-box; /* Đảm bảo viền nằm ngoài nội dung */
    z-index: 10; /* Đảm bảo viền nằm trên các phần tử khác */
    pointer-events: none; /* Để không cản trở các sự kiện chuột */
}


.img-logo-du-an>div {
    margin: 0px !important;
}

#logo-detail>div {
    padding: 0;

}

#logo-detail {
    padding-top: 3.34%;
    gap: 40px;
}

.title-container .title-logo {
    font-family: Inter;
    font-size: 46px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: #222222;
    margin: 0;
    padding-top: 8.791%;
}

.description-container .description-logo {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    color: #282828;
    margin: 0;
    padding-top: 5.235%;
}