.container {
    display: flex;
}

.filters {
    width: 20%;
    border-right: 1px solid #ccc;
    padding: 20px;
}

.filters label {
    display: block;
    margin-bottom: 5px;
}

.filters input {
    margin-bottom: 10px;
    width: 100%;
}

.data-container {
    width: 80%;
    padding: 20px;
}

#dataContainer {
    display: flex;
    flex-direction: column;
}

.data-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap; /* Ensure elements wrap properly */
}

.data-item img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.data-item .info {
    flex-grow: 1;
    text-align: left;
    margin-right: 20px; /* Ensure there's space between info and button */
}

.data-item .name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.data-item .specialty, .data-item .services, .data-item .experience {
    margin-bottom: 5px;
}

.data-item .details-button {
    background-color: #FFA500;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    flex-shrink: 0; /* Prevent button from shrinking */
}

#pagination {
    margin-top: 20px;
    text-align: center;
}

#pagination button {
    background-color: #007BFF;
    border: none;
    color: white;
    padding: 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}
