.tooltip-inner {
    max-width: 500px;
    /* If max-width does not work, try using width instead */
    /*width: 500px;*/
}

.body {
    background-color: #333333;
    color:#eeeeee;
}

.table{
    color:#eeeeee;
}

.header{
    background-color: #404040;
}

a {
    color: #FFFFFF;
}

a:hover {
    color: #FFFFFF;
}

.header a{
    color: #FFFFFF;
}

#app
{
    position: relative;
    min-height: 100vh;
}

#main
{
    padding-bottom:40px; /* this needs to be bigger than footer height*/
}

.footer {
    background-color: #404040;
    font-size: small;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;            /* Footer height */

    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-img {
    border: 1px solid #ddd; /* Gray border */
    border-radius: 4px;  /* Rounded border */
    padding: 5px; /* Some padding */
    width: 150px; /* Set a small width */
}

/* Add a hover effect (blue shadow) */
.preview-img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
