/* Base Styles */
.bng-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
}

.bng-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bng-filter-group {
    position: relative;
}

.bng-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    appearance: none;
    background: #ffffff;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.bng-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

.fa {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.bng-generate-button {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bng-generate-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.bng-results {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bng-name-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bng-name-card:hover {
    transform: translateY(-5px);
}

.bng-name-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.bng-name-card p {
    color: #666;
    margin: 0.3rem 0;
}

@media (max-width: 768px) {
    .bng-container {
        padding: 1rem;
    }
    
    .bng-filters {
        grid-template-columns: 1fr;
    }
}