.mapboxgl-canvas {
    width: 100% !important;
    height: 100% !important;
}

.map-container {
    width: 100%;
    height: 200px; /* Set a fixed height for all map containers */
}

/* Style dla wyszukiwania */
.search-container {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    background-color: rgb(55, 65, 81);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    height: 42px;
}

.search-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.search-input::placeholder {
    color: #9ca3af;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

.clear-search-btn:hover {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .search-input {
        font-size: 14px;
    }

    .filter-form-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .filter-form-buttons button {
        width: 100%;
    }
}