.ct-search-form {
    position: relative;
}

.ct-search-form button[type="submit"].loading .ct-search-button-content {
    display: none;
}

.ct-search-form button[type="submit"].loading .ct-ajax-loader {
    display: block;
}

.ct-search-form button[type="submit"]:not(.loading) .ct-ajax-loader {
    display: none;
}

.ct-live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 50px 70px rgba(210, 213, 218, 0.4);
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.ct-live-search-results.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.ct-search-results-inner {
    padding: 8px 0;
}

.ct-search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333333;
    transition: background-color 0.2s ease;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.ct-search-result-item:last-child {
    border-bottom: none;
}

.ct-search-result-item:hover {
    background-color: #f5f5f5;
}

.ct-result-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
}

.ct-result-thumb-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #e0e0e0;
    margin-right: 12px;
    flex-shrink: 0;
}

.ct-result-content {
    flex: 1;
    min-width: 0;
}

.ct-result-title {
    font-family: 'Google Sans', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #333333;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ct-result-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #5f6368;
}

.ct-result-version,
.ct-result-size {
    display: inline-block;
}

.ct-no-results {
    padding: 20px 16px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
    font-family: 'Google Sans', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

@media (max-width: 600px) {
    .ct-live-search-results {
        left: -16px;
        right: -16px;
        max-width: calc(100vw - 32px);
    }

    .ct-result-thumb,
    .ct-result-thumb-placeholder {
        width: 40px;
        height: 40px;
    }

    .ct-result-title {
        font-size: 13px;
    }

    .ct-result-meta {
        font-size: 11px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .ct-live-search-results {
        min-width: 350px;
    }
}

@media (min-width: 1025px) {
    .ct-live-search-results {
        min-width: 400px;
    }
}
