.searchable-dropdown {
    position: relative;
    width: 100%;
}

#schoolSearchResults {
    position: absolute;
    background: #fff;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    z-index: 9999;
}
.result-item {
    margin-bottom: 4px;
    padding: 5px 7px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
}

.enrollment_tab {
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    font-size: 18px;
}

.enrollment_tab.active {
    border-bottom: 2px solid #007bff;
    font-weight: bold;
}

#selected-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.course-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0d6efd;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}


.course-pill .check {
    width: 16px;
    height: 16px;
    background: #fff;
    color: #0d6efd;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-pill .remove-course {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    opacity: 0.9;
}

.course-pill .remove-course:hover {
    opacity: 1;
}