body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #0844c5;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 8px;
    transition: background 0.3s;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #0844c5;
}

.img_div img {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
}