table.table{
    width: 100%;
    
}
td, th{
    padding:15px !important;
    word-break: break-word;
}

/* Animation classes */

a{
    word-break: break-word;
}

.panel{
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 0px;
}
/* 
.fade-in {
    overflow: hidden;
    max-height: 300px;
    animation: fade-in 1s ease-in forwards;
}

.fade-out {
    max-height: 0;
    overflow: hidden;
    animation: fade-out 1s ease-out forwards;
}  */

/* Animation keyframes */

 /* @keyframes fade-in {
0% {
    max-height: 0;
} 

 100% {
    max-height: 300px;
}
}

@keyframes fade-out {
0% {
    max-height: 300px;
} 

100% {
    max-height: 0;
} 
} */