/* Styling of data table header */
.no-wrap{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.table-wrapper header div:first-child {
    color: #444e55;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.exapandableComponent {
    padding: 25px 25px 25px 25px;
    background-color: transparent !important;
    animation-name: slide-down;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
  }
  
  @keyframes slide-down {
    0% {
        opacity: 0;

    }
    50%{
        opacity: 0.5;
    }
    100% {
       opacity: 1;
    }}

.requestRectangle {
    width:50px;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    padding: 7px 0 4px;
    border-radius: 2px;
}

.GET{
    background-color: #0f6ab4;
}
.POST{
    background-color: #10a54a;
}
.PUT{
    background-color: #c5862b;
}
.DELETE{
    background-color: #a41e22;
}
