/* Modern Search Bar Styles */
.coffee-search-container {
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.coffee-search-form {
    width: 100%;
}

.coffee-search-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.coffee-search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.coffee-search-input {
    width: 100%;
    padding: 14px 50px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.coffee-search-input:focus {
    border-color: #f0a930;
    box-shadow: 0 2px 8px rgba(240, 169, 48, 0.15);
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 18px;
}

.coffee-search-clear {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-search-clear:hover {
    color: #666;
}

.coffee-search-button {
    background-color: #f0a930;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(240, 169, 48, 0.2);
}

.coffee-search-button:hover {
    background-color: #e09820;
}

.coffee-search-button.loading {
    background-color: #e0e0e0;
    color: #888;
    pointer-events: none;
}

/* Search Results Message Styles */
.coffee-search-results {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.coffee-search-results p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.coffee-search-results.no-results {
    background-color: #fff7eb;
    border: 1px dashed #f0a930;
}

.add-coffee-shop-button {
    background-color: #f0a930;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-coffee-shop-button:hover {
    background-color: #e09820;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(240, 169, 48, 0.2);
}

/* Highlight search results */
.coffee-shop-card-highlight {
    border: 2px solid #f0a930 !important;
    box-shadow: 0 4px 15px rgba(240, 169, 48, 0.15) !important;
    transform: translateY(-3px);
    order: -1;
}

.search-highlight {
    background-color: #fff2cc;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: bold;
    color: #333;
}

/* Responsive styles */
@media (max-width: 576px) {
    .coffee-search-wrapper {
        flex-direction: column;
    }
    
    .coffee-search-button {
        width: 100%;
    }
} 