.fcs-search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.fcs-search-wrapper {
    position: relative;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fcs-search-wrapper:hover {
    border-color: #ccc !important;
}

.fcs-search-wrapper:focus-within {
    border-color: #999 !important;
}

.fcs-search-input {
    width: 100% !important;
    padding: 18px 70px !important;
    border: none !important;
    outline: none !important;
    font-size: 16px !important;
    color: #333 !important;
    background: transparent !important;
    font-weight: 400 !important;
    line-height: normal !important;
    height: auto !important;
    min-height: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.fcs-search-input::placeholder {
    color: #888 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

.fcs-search-button {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: 60px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
    border-radius: 0 !important;
}

.fcs-search-button:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.fcs-search-button:active {
    background: rgba(0, 0, 0, 0.1) !important;
}

.fcs-search-icon {
    width: 24px !important;
    height: 24px !important;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.fcs-clear-button {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
    min-width: auto !important;
    z-index: 1 !important;
}

.fcs-clear-button:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.fcs-clear-button.show {
    display: flex !important;
}

.fcs-clear-icon {
    width: 20px !important;
    height: 20px !important;
    stroke: #888;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .fcs-search-input {
        padding: 16px 60px !important;
        font-size: 16px !important;
    }
    
    .fcs-search-button {
        width: 50px !important;
    }
    
    .fcs-clear-button {
        right: 15px !important;
    }
}