
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.filter-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #444;
}

.filter-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

select, input {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.sort-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
}

.plane-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plane-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plane-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plane-info {
    padding: 1rem;
}


.plane-info p {
    margin: 0.5rem 0;
    color: #666;
}

.favourite-btn {
    padding: 0.5rem 1rem;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 0.5rem;
}

.favourite-btn:hover {
    background-color: #b71c1c;
}

.not-found {
    position: absolute;
    color: #b71c1c;
    left: 50%;
    translate: -50% 50%;
}

h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #0057b7;
}
