/* FORCE FULL WIDTH LIKE e-Pravesh */
.artists-section .container,
.artists-section .container-fluid {
    max-width: 100% !important;
}

/* ================= COLLEGE CARD ================= */

.college-card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border-left: 6px solid #b38728;
}

.college-card-inner {
    padding: 16px 18px;
}

/* TOP */
.college-top {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%; /* IMPORTANT */
    margin-bottom: 10px; /* space before pills */
}

.college-id {
    font-weight: 700;
    color: #7a7a7a;
    margin-right: 6px;
}



/* COURSES STRIP */
.results .college-courses-strip {
   
    font-size: 13px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* COURSE PILLS */
.course-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.course-pill {
    background: #e2eeff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    border: solid 1px #0a4191;
    color: #0a4191;
}

    .course-pill.more {
        background: #ffffff;
        font-weight: 600;
    }

/* TAGS */
.college-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tag {
    background: #f2f2f2;
    padding: 5px 9px;
    border-radius: 6px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-green {
    background: #cfe8cf;
    font-weight: 600;
}

/* LINKS */
.college-links {
    font-size: 13px;
}

    .college-links a {
        color: #0b5ed7;
        text-decoration: none;
    }

        .college-links a:hover {
            text-decoration: underline;
        }
/* ================= FILTERS ================= */

#courseList,
#districtList {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 6px;
}

/* FILTER PILL */
.filter-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 1rem;
    background: #f5f8fb;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: 600;
    user-select: none;
}

.pill-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*.pill-icon {
    width: 36px;
    height: 36px;
    background: #b38728;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}*/

.pill-arrow {
    transition: transform 0.25s ease;
    font-size: 18px;
}

/* FILTER BODY */
.filter-body {
    display: none;
    padding: 12px 10px 18px;
}

    .filter-body.active {
        display: block;
    }

/* ROTATE ARROW */
.filter-pill.active .pill-arrow {
    transform: rotate(90deg);
}
.pagination {
    display: flex;
    gap: 6px;
    padding: 12px 8px;
    overflow-x: auto; /* KEY FIX */
    white-space: nowrap;
    max-width: 100%;
    border-top: 1px solid #eee;
}

    .pagination::-webkit-scrollbar {
        height: 6px;
    }

    .pagination::-webkit-scrollbar-thumb {
        background: #c9c9c9;
        border-radius: 4px;
    }

    .pagination button {
        min-width: 42px;
        padding: 6px 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        background: #fff;
        font-size: 13px;
        cursor: pointer;
    }

        .pagination button.active {
            background: #b38728;
            color: #fff;
            border-color: #b38728;
        }
