.watermark {
    visibility: hidden;
}

:root {
    --title-color: #000031;
    --test: hsl(340,100%,5%);
}

body {
    --primary-hover: #67669e;
    
    scrollbar-color:  hsl(240, 25%, 90%) transparent;
    .hover\:bg-primary\/90:hover {
        background-color: var(--primary-hover);
    }
}

.dark {
    --title-color: #ffffff;

    ::-webkit-scrollbar-track {
        background-color: #00001C;
    }

    scrollbar-color:  hsl(240, 25%, 13%) transparent;

    ::-webkit-scrollbar-thumb,
    ::-webkit-scrollbar-button {
        background-color: #01004c;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    font-family: 'Orbitron', sans-serif;
}

[src$=".svg"],[src$=".svg?"], [src$=".png"],[src$=".png?"]
{
    border-radius: 0px !important;
}


/* Dropdown/selection area specific styling */
/* .cl-dropdown img,
.cl-select img,
[role="option"] img,
[role="listbox"] img,
.cl-menu img,
.cl-listbox img {
    border-radius: 0px !important;
    border: none !important;
    max-height: 15px !important; 
    width: auto !important;
}

/* Logo files and ensuring it is not a circle  */
/* img[src*="logo_light.png"]:not([src*="favicon"]),
img[src*="logo_dark.png"]:not([src*="favicon"]) {
    border-radius: 0px !important;
    border: none !important;
    background: transparent !important;
    max-height: 50px;
    width: auto;
    margin: 10px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
} */

/* [data-variant="sidebar"] {
    --sidebar-width: 200pt;
}  */
#readme-button {
    display: none;
}

[data-sidebar="header"]::after {
    content: "";
    display: block;
    max-width: 100%;
    height: auto;
    background-image: url('./assets/techonomy-agent.svg');
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center;
    /* margin-bottom: 0.5rem; */
    margin-top: 1rem;
    min-height: 100px;
    flex-shrink: 0;
}

.dark [data-sidebar="header"]::after {
    background-image: url('./assets/techonomy-agent-dark.svg');
}

/* Selecteert de 'message composer' (de invoerbalk-container) */
#message-composer::after {
    
    /* Hier komt je disclaimer-tekst */
    content: "Let op: Deze chatbot kan fouten maken. Controleer belangrijke informatie.";
    
    /* Styling om het er goed uit te laten zien: */
    
    position: fixed;   /* Positioneert het element relatief aan de viewport */
    bottom: 0;         /* Plaatst het onderaan het scherm */
    left: 59%;         /* Start vanaf het midden */
    transform: translateX(-50%); /* Centreert het element horizontaal */
    width: 90%;        /* Breedte die overeenkomt met welcome-screen */
    max-width: 768px;  /* Maximale breedte voor consistentie */
    display: flex;     /* Zorgt dat de tekst op een eigen regel komt */
    text-align: center; /* Centreert de tekst */
    font-size: 0.8rem; /* Maakt de tekst iets kleiner */
    color: black;     /* Tekstkleur */
    background-color: rgba(255, 255, 255, 0) !important;
    align-content: center;
    justify-content: center;
    padding: 10px 0;   /* Voegt wat padding toe voor ruimte */
    z-index: 1000;     /* Zorgt dat het boven andere elementen blijft */
  }

.dark #message-composer::after {
    color: white;      /* Witte tekst in dark mode */
  }