body {
	background-color : #EEEEEE;
}

.filter-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.filter-input {
    flex-grow: 1;
}

.filter-form .filter-input input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    background: #212529;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 8px;
}

.filter-btn:hover {
    background: #343a40;
}

.card {
    margin-bottom: 20px;
}