.search {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    width: 300px;
    background-color: #fff;
    width: 99%;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.search-button i {
    font-size: 16px;
    color: #555;
}

.search-input::placeholder {
    color: #aaa;
}




.filter {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color:#555;
    margin-top: 20px;
    width: 100;;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-item {
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.filter-item:hover {
    background-color: #e0e0e0;
}




.company-container {
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 5px;
    width: 99%;
    margin-top: 10px;
}

.icon-container {
    margin-right: 10px;
    padding: 15px;
    background-color:#f0f0f0;
    border-radius: 7px;
}

.icon-container i {
    font-size: 24px;
    color: #555;
}

.text-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.label {
    font-weight: 600;
    margin-bottom: 5px;
}

.companies {
    color: #666;
}

.apply-container {
    margin-left: auto;
}

.apply-button {
    border: none;
    border-radius: 9px;
    background-color: #F5F5F5;
    padding: 14px 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #c0c0c0;
}
