/* Create Modal Lake Search Styles */

#create-lake-associations-section {
    border-top: 2px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.section-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.lake-search-container {
    position: relative;
}

.lake-search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.lake-search-result-item-create {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s;
}

.lake-search-result-item-create:hover {
    background-color: #f9fafb;
}

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

.lake-result-name-create {
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.lake-result-wbic-create {
    font-size: 0.85rem;
    color: #64748b;
}

.selected-lakes-list {
    min-height: 100px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.75rem;
    background: #f9fafb;
}

.no-lakes-selected {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    padding: 2rem;
    margin: 0;
}

.selected-lake-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.selected-lake-item:last-child {
    margin-bottom: 0;
}

.selected-lake-info {
    flex: 1;
}

.selected-lake-name {
    font-weight: 500;
    color: #1e293b;
    display: block;
    margin-bottom: 0.2rem;
}

.selected-lake-wbic {
    font-size: 0.85rem;
    color: #64748b;
}

.btn-remove-selected-lake {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.btn-remove-selected-lake:hover {
    background: #dc2626;
}
