.expert-table_wrapper {
    background-color: white;
  }


.expert-card {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.expert-photo {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expert-details {
    flex: 1;
}
.expert-details h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.expert-details p {
    margin: 5px 0;
    color: #666;
}
.expert-badge {
    display: inline-block;
    background-color: #ffcc00;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
}
.expert-available {
    background-color: #66bb6a;
}
.button {
    flex: 0 0 150px;
    text-align: center;
}
.button button {
    background-color: #ff8800;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}