.gsc-course-name-search-content {
    padding: 18px 0 40px;
}

.gsc-course-search-section {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.gsc-course-search {
    display: flex;
    min-height: 60px;
    padding: 0 16px;
    border: 1px solid #d4d6d8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    align-items: center;
}

.gsc-search-icon {
    position: relative;
    width: 23px;
    height: 23px;
    margin-right: 13px;
    flex: 0 0 23px;
    border: 3px solid var(--gsc-green);
    border-radius: 50%;
}

.gsc-search-icon::after {
    position: absolute;
    right: -8px;
    bottom: -5px;
    width: 11px;
    height: 3px;
    background: var(--gsc-green);
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.gsc-course-search input,
#gsc-course-search-input {
    width: 100%;
    padding: 0;
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    box-shadow: none !important;
    color: var(--gsc-text);
    font-size: 18px;
}

.gsc-course-search input::placeholder {
    color: #777b82;
}

.gsc-course-search-results {
    position: absolute;
    z-index: 4;
    top: 68px;
    right: 20px;
    left: 20px;
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--gsc-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--gsc-shadow);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.gsc-course-search-result {
    display: grid;
    width: 100%;
    gap: 3px;
    padding: 13px 15px;
    border: 0;
    border-bottom: 1px solid var(--gsc-border);
    background: #ffffff;
    color: var(--gsc-text);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.gsc-course-search-result:last-child {
    border-bottom: 0;
}

.gsc-course-search-result strong {
    color: var(--gsc-green);
    font-size: 16px;
}

.gsc-course-search-result span {
    font-size: 14px;
    font-weight: 600;
}

.gsc-course-search-result small {
    color: var(--gsc-text-muted);
    font-size: 13px;
}

.gsc-course-search-available {
    display: inline-flex;
    padding: 4px 10px;
    border: 1px solid #b9dfc6;
    border-radius: 999px;
    background: #e7f4ec;
    color: var(--gsc-green);
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1;
    justify-self: start;
    align-items: center;
    justify-content: center;
}

.gsc-course-search-import:disabled {
    opacity: 0.65;
    cursor: wait;
}

.gsc-course-search-empty {
    margin: 0;
    padding: 16px;
    color: var(--gsc-text-muted);
}
