
.search-station-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.search-station-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Aspect ratio 1:1 */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.search-station-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-play-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 150, 160, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.search-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.search-play-btn i {
    font-size: 20px;
    color: #667eea;
    margin-left: 2px;
}

.search-station-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-station-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
}

.search-station-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-top: auto;
}

.search-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-stat i {
    font-size: 13px;
}



.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 2px;
}

.search-suggestions-loading {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background-color: #f8f9fa;
}

.search-suggestion-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-weight: 500;
    color: #333;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.search-suggestions-footer {
    padding: 10px 15px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.search-suggestions-footer a {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.search-suggestions-footer a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .search-station-name {
        font-size: 13px;
        min-height: 33px;
    }
    
    .search-play-btn {
        width: 36px;
        height: 36px;
    }
    
    .search-play-btn i {
        font-size: 18px;
    }
    
    .search-suggestions {
        max-height: 300px;
    }
    
    .search-suggestion-img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .search-station-card {
        border-radius: 8px;
    }
    
    .search-station-info {
        padding: 10px;
    }
    
    .search-play-btn {
        bottom: 6px;
        right: 6px;
    }
}
.search-station-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; height: 100%; display: flex; flex-direction: column; }
.search-station-card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.search-station-image-wrapper { position: relative; width: 100%; padding-bottom: 100%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); overflow: hidden; }
.search-station-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.search-station-info { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.search-station-name { font-size: 14px; font-weight: 600; color: #333; margin: 0; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 36px; }
.search-station-stats { display: flex; gap: 12px; font-size: 12px; color: #666; margin-top: auto; }
.search-stat { display: flex; align-items: center; gap: 4px; }
.search-stat i { font-size: 13px; }
@media (max-width: 768px) {
  .search-station-name { font-size: 13px; min-height: 33px; }
  .search-play-btn { width: 36px; height: 36px; }
  .search-play-btn i { font-size: 18px; }
  .search-suggestions { max-height: 300px; }
  .search-suggestion-img { width: 36px; height: 36px; }
}

@media (max-width: 576px) {
  .search-station-card { border-radius: 8px; }
  .search-station-info { padding: 10px; }
  .search-play-btn { bottom: 6px; right: 6px; }
}
