.testimonial-table-header {
    font-family: 'Comfortaa';
    font-size: 20px;
    color: #6381A8;
    text-align: center;
}

.testimonials-table-container {
    background-color: white;
    padding-bottom: 2em;
    margin-top: 0%;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 82vw;
    height: 85vh;
    overflow-y: scroll;
}

.testimonials-table {
    position: relative;
}

.testimonials-table-container::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

.testimonials-table-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #6381A8;
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.testimonials-table th {
  background: white;
  position: sticky;
  top: 0; /* Don't forget this, required for the stickiness */
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}

.testimonials-empty {
    background-color: white;
    padding-bottom: 2em;
    margin-top: 0%;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 30vw;
    height: 20vh;
    text-align: center;
    font-size: 22px;
    color: #6381A8;
    display: flex;
    align-items: center
}