.match-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Filter Section */
.filter-section {
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.filter-section label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    color: #444;
    font-size: 14px;
}

.filter-section input,
.filter-section select,
.filter-section button {
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.filter-section input:focus,
.filter-section select:focus {
    border-color: #ff4081;
    outline: none;
    box-shadow: 0px 0px 5px rgba(255, 64, 129, 0.5);
}

.filter-section button {
    background: #ff4081;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.filter-section button:hover {
    background: #d81b60;
    transform: scale(1.05);
}

/* Results Section */
.results-section {
    width: 70%;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Match Grid */
.match-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Match Cards */
.match-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Profile Image */
.match-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4081;
    transition: all 0.3s ease;
}

.match-card:hover img {
    border-color: #d81b60;
    transform: scale(1.1);
}

/* Match Info */
.match-info {
    margin-top: 10px;
}

.match-info strong {
    display: block;
    font-size: 16px;
    color: #222;
}

.match-info p {
    font-size: 14px;
    color: #555;
    margin: 3px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .match-container {
        flex-direction: column;
        align-items: center;
    }

    .filter-section {
        width: 100%;
        text-align: center;
    }

    .results-section {
        width: 100%;
    }

    .match-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .match-card {
        width: 100%;
    }
}
