.popular_links{
    margin-left: 20px;
}
/* Ensure table container does not expand excessively */
.table-container {
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
}

/* Make table scrollable only on small screens */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

/* Ensure table does not stretch beyond its content */
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .table-responsive table {
        min-width: 600px; /* Ensure horizontal scrolling */
        width: auto;
    }
}
