body {
  opacity: 0;
  transition: opacity 0.2s;
}

body.loaded {
  opacity: 1;
}





.shine::after {
  content: "";
  position: absolute;
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%; 
  background: linear-gradient(
    125deg, 
    transparent 40%,
    rgba(255,255,255,0.7) 50%,
    transparent 60%
  );
  transform: rotate(0deg); 
  animation: shineAnim 2s linear infinite;
  pointer-events: none;
}

@keyframes shineAnim {
  0%   { transform: translateX(-100%) translateY(0); opacity: 0; }
  5%   { opacity: 1; }
  50%  { transform: translateX(100%) translateY(0); opacity: 1; }
  55%  { opacity: 0; }
  100% { transform: translateX(100%) translateY(0); opacity: 0; }
}



/* ------------------------------------------------------------------------------------------------------------------------- */



/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/

* {
 outline: none;
 box-sizing: border-box;
}

:root {
 --theme-bg-color: rgba(16 18 27 / 40%);
 --border-color: rgba(113 119 144 / 25%);
 --theme-color: #f9fafb;
 --inactive-color: rgb(113 119 144 / 78%);
 --body-font: "Poppins", sans-serif;
 --hover-menu-bg: rgba(12 15 25 / 30%);
 --content-title-color: #999ba5;
 --content-bg: rgb(146 151 179 / 13%);
 --button-inactive: rgb(249 250 251 / 55%);
 --dropdown-bg: #21242d;
 --dropdown-hover: rgb(42 46 60);
 --popup-bg: rgb(22 25 37);
 --search-bg:  #14162b;
 --overlay-bg: rgba(36, 39, 59, 0.3);
 --scrollbar-bg: rgb(1 2 3 / 40%);
}


.appDD {
 top: 180px;
 left: 50px;
 background-color: rgba(0, 0, 0, 0.15);
 max-width: min(1817px, calc(100vw - 100px)); /* 50px left + 50px right TOR */
 max-height: 960px;
 height: 74vh;
 display: flex;
 flex-direction: column;
 overflow: hidden;
 position: relative;
 width: 100%;
 border-radius: 14px;
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 font-size: 15px;
 font-weight: 500;
}

.headerDD {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 0 30px;
  white-space: nowrap;
}


@media screen and (max-width: 480px) {
  .headerDD {
    padding: 0 16px;
  }
}

.headerDD-menu {
  display: flex;
  align-items: center;
}

.headerDD-menu a {
  padding: 20px 30px;
  text-decoration: none;
  color: var(--inactive-color);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}


@media screen and (max-width: 610px) {
  .headerDD-menu a:not(.main-header-link) {
    display: none;
  }
}

.headerDD-menu a.is-active,
.headerDD-menu a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}



.notifyDD {
 position: relative;
}
.notifyDD::before {
 content: "";
 position: absolute;
 background-color: #3a6df0;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 right: 20px;
 top: 16px;
}

.menucircleDD {
 width: 15px;
 height: 15px;
 background-color: #000000;
 border-radius: 50%;
 box-shadow: 24px 0 0 0 #0f0f0f, 48px 0 0 0 #141414;
 margin-right: 195px;
 flex-shrink: 0;
 @media screen and (max-width: 945px) {
  display: none;
 }
}





.headerprofileDD {
 display: flex;
 align-items: center;
 padding: 0 16px 0 40px;
 margin-left: auto;
 flex-shrink: 0;
 svg {
  width: 22px;
  color: #f9fafb;
  flex-shrink: 0;
 }
}

.notificationDD {
 position: relative;
}
.notificationDD-number {
 position: absolute;
 background-color: #3a6df0;
 width: 16px;
 height: 16px;
 border-radius: 50%;
 font-size: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 right: -6px;
 top: -6px;
}
.notificationDD + svg {
 margin-left: 22px;
}
@media screen and (max-width: 945px) {
 .notificationDD + svg {
  display: none;
 }
}


.notificationDD + svg,
.notificationDD + a > svg {
  margin-left: 22px;
}


.profileimgDD {
 width: 32px;
 height: 32px;
 border-radius: 50%;
 object-fit: cover;
 border: 2px solid var(--theme-color);
 margin-left: 22px;

 opacity: 100; 

 animation-delay: 0.5s; 
}

.wideDD {
 .headermenuDD,
 .headerprofileDD {
  display: none;
 }
 .searchbarDD {
  
  max-width: 600px;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 1px var(--border-color);
  padding-left: 0;
 }
 .menucircleDD {
  margin-right: 0;
 }
}










.updatesDD {
 position: relative;
 top: 0;
 right: 0;
 margin-left: auto;
 width: 18px;
 height: 18px;
 font-size: 11px;
}

.mainheaderDD {
 display: flex;
 align-items: center;
 border-bottom: 1px solid var(--border-color);
 height: 58px;
 flex-shrink: 0;
 .headermenuDD {
  margin-left: 150px;
  @media screen and (max-width: 1055px) {
   margin: auto;
  }
  a {
   padding: 20px 24px;
  }
 }
}

.maincontainerDD {
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}

.menulinkmainDD,
.mainheaderlinkDD {
  text-decoration: none;
  color: var(--inactive-color);   
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.menulinkmainDD.is-active,
.mainheaderlinkDD.is-active {
  color: var(--theme-color);             
  border-bottom: 2px solid var(--theme-color);
}

.menulinkmainDD:hover,
.mainheaderlinkDD:hover {
  color: var(--theme-color);
}


.contentwrapperDD {
  display: flex;
  flex-direction: column;
  color: var(--theme-color);
  padding: 20px 40px;
  height: 100%;
  overflow: auto;
  background-color: var(--theme-bg-color);
}


@media screen and (max-width: 510px) {
  .contentwrapperDD {
    padding: 20px;
  }
}


.contentwrapperDD-headerDD {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png"),    
    linear-gradient(
      to right top,
      #000000,
      #1d1c1d,
      #000000,
      #252424,
      #2e2d2d,
      #5c5758,
      #80797a,
      #80797a,
      rgb(158, 153, 151),
      #c4c1be,
      #cfceca,
      #e9e8e4
    );
  border-radius: 14px;
  padding: 20px 40px;
}

@media screen and (max-width: 415px) {
  .contentwrapperDD-headerDD {
    padding: 20px;
  }
}


.contentwrapperDD.overlay {
  pointer-events: none;
  transition: 0.3s;
  background-color: var(--overlay-bg);
}


.overlayappDD {
 width: 100%;
 height: 100%;
 position: fixed;
 left: 0;
 top: 0;
 pointer-events: all;
 background-color: rgba(36, 39, 59, 0.8);
 opacity: 0;
 visibility: hidden;
 transition: 0.3s;
 &.is-active {
  visibility: visible;
  opacity: 1;
 }
}

/* -------------------------- ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------*/



.wrapperDD {
 display: flex;
 flex-grow: 1;
 overflow: hidden;
 min-height: 0;
}

.leftsideDD {
 flex-basis: 245px;
 border-right: 1px solid var(--border-color);
 padding: 26px 26px 10px 26px; /* bottom padding gone, 3D (10) = 0 IS PERFECTION */
 overflow: hidden;
 flex-shrink: 0;
 display: flex;
 @media screen and (max-width: 945px) {
  display: none;
 }
}



/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/

/* ______________________________________________________________________________________________________*/

/* --- Chat Layout --- */
.chat-sidebar{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0; 
}

.chat-sidebar-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.chat-sidebar-title{
  color: var(--theme-color);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.chat-iconbtn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
  display: flex;
  align-items: center;
  justify-content: center;  
}
/* SVG gedraagt zich als tekst */
.chat-iconbtn .icon {
  width: 1.3em;
  height: 1.3em;
  display: block;
}
/* SVG gedraagt zich als tekst */
.chat-iconbtn .nuke {
  width: 1.15em;
  height: 1.15em;
  display: block;
}
.chat-iconbtn:hover{ background: rgba(255,255,255,0.06); }
.chat-iconbtn:active{ transform: translateY(0.5px); }

.chat-search input{
  width: 100%;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(0,0,0,0.22);
  color: var(--theme-color);
  padding: 0 12px;
  
}

.chat-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-right: 6px;
  flex: 1; min-height: 0; overflow: auto;
  z-index: 20;
  padding-top: 2px;

   overflow-x: hidden; /* <- kill bottom scrollbar */
}

.chat-item{
  margin: 0 auto;
  width: 200px;  
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 10px;
  display:flex;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  color: var(--theme-color);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  transform: none;
}
.chat-item:hover{
  background: rgba(255,255,255,0.045);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.08);
}
.chat-item.is-active{
  background: rgba(120,115,245,0.10);
  border-color: rgba(120,115,245,0.22);
}

.chat-pfp{
  width: 42px;
  height: 42px;
  border-radius: 12px;
/*  background: linear-gradient(135deg, rgba(120,115,245,0.55), rgba(46,34,41,0.95));*/
  flex: 0 0 auto;
}

.chat-item-main{ flex:1; min-width: 0; display:flex; flex-direction:column; gap: 6px; }
.chat-item-top{ display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.chat-name{ font-weight: 700; }
.chat-time{ font-size: 12px; color: var(--inactive-color); flex: 0 0 auto; }

.chat-item-bottom{ display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.chat-preview{
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-unread{
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(86, 86, 121, 0.85);   /* 120,115,245,0.85 */
  color: #0b0b10;
  font-size: 12px;
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* --- Right chat window --- */
.chat-shell{
  height: 100%;
  display:flex;
  flex-direction: column;
}

.chat-empty{
  height: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.70);
}



.chat-empty-icon{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: radial-gradient(18px 18px at 25% 20%, rgba(255,255,255,0.10), transparent 60%),
              linear-gradient(135deg, rgba(120,115,245,0.35), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,255,255,0.16);  /* 0.06 */


   /* 🔑 centering zonder layout shift */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.chat-empty-icon img{
  margin-top: 2px;
  width: 45px;        /* pas aan naar smaak */
  height: 45px;
  object-fit: contain;
  pointer-events: none;
}

.chat-empty-title{ font-weight: 800; color: rgba(255,255,255,0.90); }
.chat-empty-sub{ font-size: 13px; color: rgba(255,255,255,0.60); }

.chat-room{
  height: 100%;
  display:flex;
  flex-direction: column;
  min-height: 0;
}
.chat-room-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
}
.chat-room-left{ display:flex; align-items:center; gap: 10px; min-width: 0; }
/*.chat-room-pfp{
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(120,115,245,0.55), rgba(46,34,41,0.95)); 
}*/
.chat-room-meta{ min-width:0; }
.chat-room-name{ font-weight: 800; }
.chat-room-status{ font-size: 12px; color: var(--inactive-color); }

.chat-room-actions{ display:flex; gap: 8px; }

.chat-messages{
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.msg{ display:flex; flex-direction: column; gap: 4px; max-width: 72%; }
.msg--them{ align-self: flex-start; }
.msg--me{ align-self: flex-end; }

.bubble{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
}
.msg--me .bubble{
  color: rgba(255,255,255,0.80);
  background: linear-gradient(135deg, rgba(120,115,245,0.45), rgba(46,34,41,0.60));
  border-color: rgba(14, 14, 14, 0.9);
}

.msg .meta{
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.chat-inputbar{
  display:flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-color);
}
.chat-inputbar input{
  flex: 1;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(0,0,0,0.22);
  color: var(--theme-color);
  padding: 0 12px;
}
.chat-send{
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;

  border: 1px solid rgb(64, 63, 77);
  background:
    radial-gradient(140px 50px at 20% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, rgba(45,42,62,0.95), rgba(16,16,18,0.98));

  color: rgba(255,255,255,0.92);
  font-weight: 700;
  letter-spacing: 0.2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;             /* nodig voor shine */
  transform: translateZ(0);  

  box-shadow:
    0 3px 22px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);

  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.chat-send::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  /* subtiele top-gloss */
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), transparent 55%);
  opacity: 0.85;
}



.chat-send:hover{
  transform: translateY(0px);
  border: 1px solid rgb(64, 63, 77);
  box-shadow:
    0 5px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
  
}

.chat-send::after{
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 60%;
  height: 220%;
  pointer-events: none;

  /* moving shine */
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-120%) rotate(12deg);
  opacity: 0;
  transition: transform .55s ease, opacity .2s ease;
}

.chat-send:hover::after{
  transform: translateX(260%) rotate(12deg);
  opacity: 1;
}

.chat-send:active{
  border: 1px solid rgba(78, 77, 94, 0.98);
  transform: translateY(0px);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.chat-send:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(120,115,245,0.25),
    0 14px 28px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.chat-send:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/*------------------------------------------------------------------------------------------------------------------------ BUTTON OVERLAYS / PUPUPS */

.disposeOverlayDD{
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: all;

  /* JOUW eigen overlay look */
  background:
    radial-gradient(800px 250px at 50% 45%, rgba(155, 154, 168, 0.02), transparent 60%),
    rgba(0, 0, 0, 0.72);

  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.disposeOverlayDD.is-active{
  opacity: 1;
  visibility: visible;
}


/* modal card */
.disposeModalDD{
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(680px, calc(100vw - 40px));
  height: fit-content;

  z-index: 1001; /* boven overlay */
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18,18,24,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 26px 15px rgba(0,0,0,0.35);
  padding: 16px;
}

.disposeModalDD[hidden]{ display:none; }

.disposeModalDD-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.disposeModalDD-title{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 15px;
}

.disposeModalDD-body{
  padding: 12px 0 14px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.35;
}

/* action button (zelfde vibe als je send button) */
.disposeActionDD{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(120,115,245,0.22);
  background:
    radial-gradient(140px 50px at 20% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, rgba(45,42,62,0.95), rgba(16,16,18,0.98));
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 12px 26px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}

.disposeActionDD:hover{
  
  border-color: rgba(120,115,245,0.35);
}

.disposeActionDD:active{ transform: translateY(0); }

/* close button iets netter */
.disposeCloseDD{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  line-height: 1;
}
/* _________________________________________________________ 2ND BUTTON ______________________________________________________*/



.chat-room-actions{ position: relative; }

.chat-moreMenu{
  position: absolute;
  right: -5px;
  top: calc(100% + 10px);
  width: 190px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(33, 36, 45, 0.92); /* of var(--dropdown-bg) als je wil */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1200;
}

.chat-moreItem{
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.88);
  text-align: left;
  cursor: pointer;
  font-weight: 650;
  font-size: 13px;
}

.chat-moreItem:hover{
  background: rgba(255,255,255,0.06); /* of var(--dropdown-hover) */
}

/* _________________________________________________________ ALERT MODAL ______________________________________________________*/

.confirmOverlayDD{
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: all;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.confirmOverlayDD.is-active{ opacity: 1; visibility: visible; }

.confirmModalDD{
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(640px, calc(100vw - 40px));
  height: fit-content;

  z-index: 1301;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18,18,24,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 15px rgba(0,0,0,0.35);
  padding: 16px;
}
.confirmModalDD[hidden]{ display:none; }

.confirmModalDD-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.confirmModalDD-title{ color: rgba(255,255,255,0.92); font-weight: 800; font-size: 15px; }
.confirmModalDD-body{ padding: 12px 0 14px; color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.35; }

.confirmModalDD-actions{
  display:flex;
  gap: 10px;
  justify-content: flex-end;
}

.confirmBtnDD{
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.90);
  font-weight: 800;
  cursor: pointer;
}
.confirmBtnDD:hover{ background: rgba(255,255,255,0.06); }

.confirmOkDD{
  border: 1px solid rgb(65, 65, 87, 0.9);
  background:
    radial-gradient(140px 50px at 20% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, rgba(45,42,62,0.95), rgba(16,16,18,0.98));
}


/* --------------------------------------------  */

/* Firefox */
.chat-list,
.chat-messages{
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) rgba(255,255,255,0.04);
}

/* Chrome/Edge/Safari */
.chat-list::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

.chat-list::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
}

.chat-list::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0); /* maakt 'm zachter */
  background-clip: padding-box;
}

.chat-list::-webkit-scrollbar-thumb:hover,
.chat-messages::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,0.22);
  background-clip: padding-box;
}

















































































/* _________________________________________________________ */
.searchbarDD {
  opacity: 0;   /* _____________________________  SEARCH FILES, LINKS, mEDA ETCC.. SREACHBAR ____________________________ */


 height: 40px;
 display: flex;
 width: 100%;
 max-width: 400px;

 border-radius: 4px;
 input {
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(20, 20, 20, 0.45); 
  backdrop-filter: blur(15px);          
  -webkit-backdrop-filter: blur(15px);  
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px 0 40px;
  box-shadow: 0 0px 5px rgba(0,0,0,0.3);  
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 16px 48%;
  color: var(--theme-color);
  &::placeholder {
   font-family: var(--body-font);
   color: var(--inactive-color);
   font-size: 15px;
   font-weight: 500;
  }
 }
}