#solutionsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.solutionCard {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}
.solutionCard:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.solutionCard img {
    max-width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
}
img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.solutionCard h2 {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.solutionCard p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.solutionCard button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #1AB79D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.solutionCard button:hover {
    background-color: #45a049;
}
.profile {
    text-align: center;
    margin-bottom: 10px;
}

.profileImage {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.userName {
    margin-top: 5px;
}
/* Style for search input field */
#searchInput {
    margin: 10px auto; /* Center the search input field */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%; /* Set the width of the input field */
    max-width: 400px; /* Set the maximum width */
    display: block; /* Ensure it behaves as a block element */
}
/* Media query for adjusting styles based on screen size */
@media only screen and (min-width: 768px) {
    /* For desktop */
    #searchInput {
      max-width: 700px;
        width: 70%; /* Adjust the width for desktop */
    }
}
.profileimage {
    max-width: 70px;
    border-radius: 50%;
}
