/* Such-Toggle Styles */
.search-toggle-container {
    position: relative;
    display: inline-block;
}

.search-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle-button:hover {
    background-color: rgba(36, 108, 51, 0.1);
    transform: scale(1.1);
}

.search-toggle-button svg {
    width: 20px;
    height: 20px;
    fill: #3c3c3b;
    transition: fill 0.3s ease;
}

.search-toggle-button:hover svg {
    fill: #3c3c3b;
}

.search-toggle-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid #3c3c3b;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
}

.search-toggle-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-toggle-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-toggle-input:focus {
    border-color: #3c3c3b;
    box-shadow: 0 0 0 2px rgba(36, 108, 51, 0.2);
}

.search-toggle-submit {
    background-color: #3c3c3b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.search-toggle-submit:hover {
    background-color: #3c3c3b;
}

.search-toggle-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 2px;
    line-height: 1;
}

.search-toggle-close:hover {
        color: #3c3c3b;
}

/* Responsive Design */
@media (max-width: 976px) {
    .search-toggle-form {
        min-width: 250px;
        right:10px;
    }
}

@media (max-width: 600px) {
    .search-toggle-form {
        min-width: 200px;
        left:10px;
    }
} 