.lse-search {
    position: relative;
    width: 100%;
    max-width: 100%;
  
}

.lse-search [hidden] {
    display: none !important;
}

.lse-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.lse-input {
    width: 100%;
    padding: 15px 20px!important;
    border: 1px solid #2894E2!important;
    border-radius: 50px!important;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    color: #14181d;
    box-sizing: border-box;
}

.lse-input::placeholder {
    color: rgba(40, 148, 226, 0.75);
    opacity: 1;
}

.lse-input::-webkit-input-placeholder {
    color: rgba(40, 148, 226, 0.75);
    opacity: 1;
}

.lse-input::-moz-placeholder {
    color: rgba(40, 148, 226, 0.75);
    opacity: 1;
}

.lse-input:-ms-input-placeholder {
    color: rgba(40, 148, 226, 0.75);
    opacity: 1;
}

.lse-input:focus {
    border-color: #2894E2;
    outline: 2px solid rgba(40, 148, 226, 0.35);
    outline-offset: 1px;
}

.lse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid #2894E2;
    border-radius: 50px;
    background: #2894E2;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.lse-button:hover,
.lse-button:focus-visible {
    background: #064F8F;
    border-color: #064F8F;
    color: #ffffff;
}

.lse-button:focus-visible {
    outline: 2px solid rgba(40, 148, 226, 0.45);
    outline-offset: 2px;
}

.lse-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: min(420px, 70vh);
    overflow: auto;
    background: #2894E2;
    border: 1px solid #2894E2;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
    color: #ffffff;
    z-index: 9999999 !important;
    overflow: auto;
}

.lse-results::-webkit-scrollbar {
    width: 10px;
}

.lse-results::-webkit-scrollbar-track {
    background: transparent;
}

.lse-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.lse-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lse-option {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.lse-option:last-child {
    border-bottom: 0;
}

.lse-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: #ffffff;
}

.lse-link:hover,
.lse-link:focus-visible,
.lse-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.lse-thumb-wrap {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.lse-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.20);
    display: block;
}

.lse-thumb-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
}

.lse-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lse-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}

.lse-excerpt {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lse-status {
    padding: 14px;
    font-size: 14px;
    color: #ffffff;
}

.lse-search mark {
    background: #FFE381;
    color: #064F8F;
    border-radius: 3px;
    padding: 0 0.1em;
}

@media (max-width: 600px) {
    .lse-controls {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .lse-button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .lse-thumb-wrap {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .lse-thumb,
    .lse-thumb-placeholder {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}




.lse-search form .lse-input {
    background: #ffffff !important;
    color: #14181d !important;
    caret-color: #14181d !important;
}