#sp-main-body {
    padding: 15px;
}

.logo-image.logo-default {
    height: 70px;
}

.sp-contact-info {
  text-align: right;
}

.footer {
  text-align: center;
}

.tableresp {
  width: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  padding-bottom: 2px; /* Abstand zwischen Tabelle und Scrollbar */
}



Design des Scrollbars: (.tableresp aus div class HTML verwenden)

 /* width height */
.tableresp::-webkit-scrollbar {
  width: 0px;
  height: 9px;
}

/* Track */
.tableresp::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
 
/* Handle */
.tableresp::-webkit-scrollbar-thumb {
  background: #b3b3b3; 
  border-radius: 4px;
}

/* Handle on hover */
.tableresp::-webkit-scrollbar-thumb:hover {
  background: #7c93b8; 
}