.tabs .tab.active {
    color: #9750a6 !important;
}

.tabs .tab {
    cursor: pointer;
    padding: 10px 15px !important;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-bottom: 10px;
}

.country {
    font-size: 24px;
    color: #333 !important;
}

.college {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px !important;
}

.college img {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
}

.college h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: #333;
}

.colleges {
    height: 400px;
    overflow-y: auto;
}
 /* Custom CSS */
 .colleges {
    width: 600px;
    /* Set the desired width */
    /* Other styles... */
}
/* Custom CSS */
@media (max-width: 767.98px) {
    /* Adjust the width for mobile devices */
    .colleges {
        width: 100%; /* Set width to 100% for mobile devices */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Adjust the width for tablets */
    .colleges {
        width: 80%; /* Set width to 80% for tablets */
    }
}

@media (min-width: 992px) {
    /* Reset width for larger screens */
    .colleges {
        width: 850px; /* Set the desired width for larger screens */
    }
}
