:root{
    --var-mul-blue:#002d75;
    --var-mul-blue-light:#bbc9e0;
    --var-mul-yellow:#d9cd71;
}
body {
    margin: 0;
    padding: 0;
}
a{
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}
.container {
    max-width: 1080px;
}
.container.container-fullscreen {
    max-width: 100%;
    padding:16px;
}

.like_btn:hover, .unlike_btn:hover {
    cursor: pointer;
}

.fries {
    object-fit: contain; /* Ensures the image scales nicely */
    background-image:url('/img/fries.png');
    background-position:center;
    background-size:auto 100%;
    animation: slideBackground 15s linear infinite;
}
@keyframes slideBackground {
    0% {
        background-position: 0% center; /* Start at the left */
    }
    100% {
        background-position: 100% center; /* End at the right */
    }
}
.rainbow {
    min-height: 100%;
    background: linear-gradient(
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 154, 0, 1) 10%,
    rgba(208, 222, 33, 1) 20%,
    rgba(79, 220, 74, 1) 30%,
    rgba(63, 218, 216, 1) 40%,
    rgba(47, 201, 226, 1) 50%,
    rgba(28, 127, 238, 1) 60%,
    rgba(95, 21, 242, 1) 70%,
    rgba(186, 12, 248, 1) 80%,
    rgba(251, 7, 217, 1) 90%,
    rgba(255, 0, 0, 1) 100%
    )
    0 0/100% 200%;
    animation: a 2s linear infinite;
}
img.rounded-circle{
    object-fit:cover;
}

@keyframes a {
    to {
        background-position: 0 -200%;
    }
}

.ui-autocomplete {
    position: absolute;
}
.ui-helper-hidden-accessible { display:none; }

/*
.textarea {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: var(--bs-body-color);
background-color: var(--bs-body-bg);
background-clip: padding-box;
border: var(--bs-border-width) solid var(--bs-border-color);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: var(--bs-border-radius);
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
 */
    .input{
        margin-bottom:16px;
    }

    .disabled {
        background-color: var(--bs-secondary-bg);
        opacity: 1;
    }

    .mutation-toggle {
        color: #0d6efd;
        cursor: pointer;
    }

    .mutation-toggle:hover {
        text-decoration: underline;
    }

    .card-body p {
        margin-bottom: 0.1rem;
    }

    .recover-btn {
        color: #0d6efd;
        cursor: pointer;
        text-decoration: underline;
    }
    span.light{
        color:#aaa;
        font-size:0.8rem;
        margin-left:4px;
    }

    .ui-menu-item:hover {
        cursor: pointer;
    }

    .ui-autocomplete {
        max-height: 200px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    html .ui-autocomplete {
        height: 200px;
    }
    .split-view{
        display:flex;
        flex-flow:row wrap;
        justify-content:space-between;

    }
    .split-container{
        flex:4;
        min-width:400px;
        box-sizing:border-box;
        padding:0 16px;
    }

    .split-menu {
        min-width:200px;
        flex:1;
        color: rgba(255,255,255,0.5);
    }
    .split-menu ul{
        background-color: var(--var-mul-blue-light);
        list-style:none;
        box-sizing:border-box;
        padding: 0;
        margin: 0 0 16px;
        width: 200px;
    }

    .split-menu .header {
        background-color: var(--var-mul-blue);
        padding: 2px 8px;
        font-size: 12px;
    }

    .split-menu li {
        box-sizing:border-box;
        border-bottom: 1px solid var(--var-mul-blue);
        border-left: 1px solid var(--var-mul-blue);
        border-right: 1px solid var(--var-mul-blue);
    }

    .split-menu li a {
        display: block;
        padding: 8px;
        color: var(--var-mul-blue);
        text-decoration: none;
    }

    .split-menu li a:hover {
        background-color: var(--var-mul-blue);
        color: var(--var-mul-yellow);
    }

    .split-menu li a:active {
        background-color: #222;
    }
    .small{
        font-size:0.8em;
        font-style:italic;
    }

    .info-container {
        width: 100%;
        margin: 16px auto;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Minimal box shadow */
    }

    .info-summary {
        background-color: #f1f1f1;
        padding: 10px;
        cursor: pointer;
        border: 1px solid #ddd;
    }
    .info-summary h2{
        font-size:18px;
        margin:0;
    }
    .info-summary h3{
        font-size:16px;
        margin:0 0 8px;
    }

    .info-details {
        max-height: 0;
        overflow: hidden;
        background-color: #fff;
        transition: max-height 0.3s ease;
        padding: 0 10px;
        border: 1px solid #ddd;
        border-top: none;
        overflow:auto;
    }

    .info-container.open .info-details {
        max-height: 60vh; /* adjust this value based on your content */
        padding: 10px;
    }


    .info-container table th, .info-container table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .info-container table th {
        background-color: #f4f4f4;
    }

    .info-container table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .info-container table tbody tr:hover {
        background-color: #f1f1f1;
    }
    .neutral{
        color:#CCC;
    }
    .error{
        color:red;
    }
    .success,.good{
        color:green;
    }
    .tick line {
        stroke: #ddd;          /* light gray */
        stroke-opacity: 0.7;
    }
    .d3-tooltip {
        position: absolute;
        background: rgba(0, 0, 0, 0.75);
        color: #fff;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 13px;
        white-space: nowrap;
    }
    .error-box{
        background-color:#ffeaea;
        color:#f00;
        border:1px solid #f00;
        border-radius:16px;
        padding:16px;
        margin-bottom:16px;
    }
    .box{
        background-color:#f5f5f5;
        color:#333;
        border:1px solid #CCC;
        border-radius:16px;
        padding:16px;
        margin-bottom:16px;
    }
    .box{
        svg{
            background:white;
        }
    }
    main{
        padding-bottom:50px;
    }
