




.shine::after {
  content: "";
  position: absolute;
  top: -50%; /* start boven */
  left: -50%; /* start links buiten */
  width: 200%; /* groter dan box zodat hij volledig schuift */
  height: 200%; 
  background: linear-gradient(
    125deg, /* perfect rechte schuine lijn */
    transparent 40%,
    rgba(255,255,255,0.7) 50%,
    transparent 60%
  );
  transform: rotate(0deg); /* of een kleine hoek als je wil */
  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; }
}



/* ------------------------------------------------------------------------------------------------------------------------- */

*, *:before, *:after {
  box-sizing: inherit;
}

.u-float-rightSS { float: right; }
.u-flex-centerSS {
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-clearfixSS:before,
.u-clearfixSS:after {
  content: " ";
  display: table;
}
.u-clearfixSS:after { clear: both; }

.containerSS {
  position: relative;
  box-shadow: 0 0 50px rgba(0,0,0,.3);
  margin: 10px auto;
  overflow: hidden;
  width: 360px;
  border-radius: 13px;
  transform: scale(0.88);

}

.header-containerSS { position: relative; overflow: hidden;}

.header-imageSS {
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
  animation: zoomEffectSS 25s infinite alternate linear;
  backface-visibility: hidden;
}

@keyframes zoomEffectSS {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.2) translate(-20px, -10px);
  }
  50% {
    transform: scale(1.4) translate(15px, -20px);
  }
  75% {
    transform: scale(1.6) translate(-10px, 15px);
  }
  100% {
    transform: scale(1.8) translate(0, 0);
  }
}

.u-float-rightSS {
  
  position: relative;
  top: -20px;              /* schuif 4px omhoog; pas aan naar wens */
}


.headerSS {
  
  color: #fff;
  padding: 15px;
  height: 300px;
}

/* Alle header-iconSS standaard niet klikbaar */
.header-iconSS {
  pointer-events: none; /* voorkomt clicks */
  cursor: default;      /* toont geen handje */
}

/* Alleen de 2e SVG klikbaar maken */
.header-iconSS.u-float-rightSS {
  pointer-events: auto; /* maakt clicks mogelijk */
  cursor: pointer;      /* toont handje */
}



.main-headingSS {
  position: absolute;
  top: 32px;
  left: 15px;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 20px; /* vergroot de tekst */
}

.tagss1,
.tagss2 {
  position: absolute;
  top: 62px;  /* onder username */
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  font-size: 11px;
  padding: 4px 10px;
  text-transform: uppercase;
  color: #fff;
}

.tagss1 { left: 15px; }
.tagss2 { left: 95px; } /* pas aan afhankelijk van tagss1 breedte */



.tagss1 {
  background-color: rgba(255, 255, 255, .35);
  border-radius: 20px;
  font-size: 11px;
  margin-right: 8px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.tagss2 {
  background-color: rgba(255, 255, 255, .35);
  border-radius: 20px;
  font-size: 11px;
  margin-right: 8px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.statsSS { margin-top: 35px; }

.stat-moduleSS {
  display: inline-block;
  font-size: 12px;
  margin-right: 20px;
  text-transform: uppercase;
}

.stat-numberSS {
  font-weight: 600;
  margin-left: 4px;
}

.overlay-headerSS {
  position: relative;
  background-color: #eee;
  height: 100px;
  margin: -50px 0 0 -25%;
  transform: rotate(-10deg);
  width: 150%;
  z-index: 0;
}

.bodySS {
  background-color: #eee;
  color: #555;
  margin-top: -50px;
  padding: 0 15px 15px;
  position: relative;
}

.body-imageSS {
  width: 110px;   /* vaste breedte */
  height: 110px;  /* vaste hoogte */
  object-fit: cover; /* zodat hij niet uitrekt */
  border-radius: 50%;
  box-shadow: 5px 10px 75px rgba(0, 0, 0, .4);
  float: left;
  margin: -90px 0 20px;
  position: relative;
  z-index: 2;
}

.body-action-buttonSS {
  background-color: #383838;
  border-radius: 50%;
  box-shadow: 1px 2px 12px rgba(0,0,0,.4);
  cursor: pointer;
  height: 40px;
  position: absolute;
  right: 15px;
  top: -97px;
  width: 40px;
  
}

.body-statsSS {
  
  font-size: 12px;
  font-weight: 700;
  float: left;
  margin: -14px 0  0 30px;
  text-transform: uppercase;
  width: 20%;
}

.body-statsSS > span {
  font-weight: 900;
  margin-top: 8px;
}

.body-infoSS {
  clear: left;
  max-height: 100px;
  overflow: hidden;
  transition: all 600ms ease-out;
}

.body-moreSS {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,#eee 100%);
  cursor: pointer;
  margin: -57px auto 0px;
  padding: 20px 0 20px;
  text-align: center;
}

.body-moreSS span {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0,0,0,.3);
  display: inline-block;
  height: 6px;
  margin-right: 2px;
  width: 6px;
}

.cardSS {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .15);
  margin-top: 15px;
  padding: 10px;
}

/* Wrapper zodat je het component kan positioneren */
.component-wrapperSS {
  position: absolute; /* of absolute als je het exact wil plaatsen */
  top: 13.2%;
  left: 79.8%;
  margin: 20px;
  z-index: 5;
  
  opacity: 0; /* start onzichtbaar */
  animation: fadeInSS 1.4s ease forwards;
  animation-delay: 0.5s; /* wacht 2 seconden voor animatie begint */
}

@keyframes fadeInSS {
  from {
    opacity: 0;
    transform: translateY(20px); /* optioneel: kleine slide omhoog */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*   Einde CSS voor het profielkaart component */ /*             BEGIN VOOR APP                              */
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/

* {
 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: 1495px;
 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 query */
@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 query for nested link hiding */
@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;
 }
}

.searchbarDD {
 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); /* semi-transparant zwart */
  backdrop-filter: blur(15px);          /* achtergrond blur */
  -webkit-backdrop-filter: blur(15px);  /* voor Safari */
  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);  /* zachte schaduw voor diepte */
  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;
  }
 }
}



.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: 0; /* start onzichtbaar */
 animation: fadeInSS 1.4s ease forwards;
 animation-delay: 0.5s; /* wacht 2 seconden voor animatie begint */
}

.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;
 }
}

.wrapperDD {
 display: flex;
 flex-grow: 1;
 overflow: hidden;
}

.leftsideDD {
 flex-basis: 240px;
 border-right: 1px solid var(--border-color);
 padding: 26px;
 overflow: auto;
 flex-shrink: 0;
 @media screen and (max-width: 945px) {
  display: none;
 }
}

.sidewrapperDD + .sidewrapperDD {
 margin-top: 20px;
}

.sidetitleDD {
 color: var(--inactive-color);
 margin-bottom: 14px;
}

.sidemenuDD {
 display: flex;
 flex-direction: column;
 white-space: nowrap;
 a {
  text-decoration: none;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
  &:hover {
   background-color: var(--hover-menu-bg);
  }
 }
 svg {
  width: 16px;
  margin-right: 8px;
 }
}


#contactsContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.contactCard {
  width: 100%;
  max-width: 280px;
  height: 70px;
  background: rgba(53, 53, 53, 0.85);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 10px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.contactCard:hover {
  transform: scale(1.03);
  cursor: pointer;
  background: rgba(80, 80, 80, 0.9);
}

.contactCard img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-right: 10px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.contactName {
  font-weight: 600;
  font-size: 14px;
}

.contactBio {
  font-size: 11px;
  opacity: 0.8;
}

/* Transparante Add contact card */
.addContactCard {
  width: 100%;
  max-width: 280px;
  height: 60px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.addContactCard:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.addContactCard .plus {
  font-size: 18px;
  font-weight: bold;
}

.addContactCard input {
  width: 80%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  outline: none;
  font-size: 14px;
}


.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);   /* standaard donker */
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.menulinkmainDD.is-active,
.mainheaderlinkDD.is-active {
  color: var(--theme-color);             /* wit */
  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 query loshalen */
@media screen and (max-width: 510px) {
  .contentwrapperDD {
    padding: 20px;
  }
}

/* dit wordt een aparte selector */
.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"),    /* VERANDER DIT VOOR NIET LOGIN NR DT, WEL LOGIN ANDERE ACHTERGROND ))) */
    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;
  }
}

/* &.overlay wordt dit: */
.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;
 }
}

.imgcontentDD {
 position: absolute;
 top: 7px;
 left: 22px;
 font-weight: 500;
 font-size: 17px;
 display: flex;
 align-items: center;
}

.mainiconDD {
  width: 60px;   /* pas aan naar jouw gewenste grootte */
  height: 60px;
  margin-right: 8px;
}


.contenttextDD {
 font-weight: 400;
 font-size: 14px;
 margin-top: 16px;
 line-height: 1.7em;
 color: #ebecec;
 display: -webkit-box;
 -webkit-line-clamp: 4;   /* WebKit */
 line-clamp: 4;           /* Standaard (voor als het breder ondersteund wordt) */
 -webkit-box-orient: vertical;
 overflow: hidden;
 text-overflow: ellipsis;
}

.contentwrappercontextDD {
 max-width: 350px;
}

.contentbuttonDD {
background-color: #1d1e24;
background-image: linear-gradient(
  43deg,
    #222329 0%,
    #839ba5 46%,
    #202125 100%
);
 border: none;
 padding: 8px 26px;
 color: #fff;
 border-radius: 20px;
 margin-top: 16px;
 cursor: pointer;
 transition: 0.3s;
 white-space: nowrap;
}

.contentbuttonDD:not(.open):hover {
 background-image: linear-gradient(
  43deg,
    #111111 0%,
    #4b5255 46%,
    #496b7a 100%
);
}


.contentwrapperimgDD {
 width: 186px;
 object-fit: cover;
 margin-top: -10px;
 object-position: center;
 @media screen and (max-width: 570px) {
  width: 110px;
 }
}

.contentsectionDD {
 margin-top: 30px;
 display: flex;
 flex-direction: column;
 &-title {
  color: var(--content-title-color);
  margin-bottom: 14px;
 }
 ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  background-color: var(--content-bg);
  padding-left: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  cursor: pointer;
  li {
   list-style: none;
   padding: 10px 18px;
   display: flex;
   align-items: center;
   font-size: 16px;
   width: 100%;
   height: 100%;
   white-space: nowrap;
   transition: 0.3s;
   &:hover {
    background-color: var(--theme-bg-color);
    &:first-child {
     border-radius: 13px 13px 0 0;
    }
    &:last-child {
     border-radius: 0 0 13px 13px;
    }
   }
   & + li {
    border-top: 1px solid var(--border-color);
   }
  }
  svg {
   width: 28px;
   border-radius: 6px;
   margin-right: 16px;
   flex-shrink: 0;
  }
 }
}

.productsDD {
 display: flex;
 align-items: center;
 width: 150px;
 @media screen and (max-width: 480px) {
  width: 120px;
 }
}
.statusDD {
 margin-left: auto;
 width: 140px;
 font-size: 15px;
 position: relative;
 @media screen and (max-width: 700px) {
  display: none;
 }
 &-circle {
  width: 6px;
  height: 6px;
  background-color: #396df0;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: -20px;
  &.green {
   background-color: #3bf083;
  }
 }
 &-button {
  font-size: 15px;
  margin-top: 0;
  padding: 6px 24px;
  @media screen and (max-width: 390px) {
   padding: 6px 14px;
  }
  &.open {
   background: none;
   color: var(--button-inactive);
   border: 1px solid var(--button-inactive);
  }
  &:not(.open):hover {
   color: #fff;
   border-color: #fff;
  }
 }
}


.user-category {
  white-space: nowrap;       /* voorkom dat het onder elkaar gaat */
  overflow: hidden;          /* knip de tekst als het te lang is */
  text-overflow: ellipsis;   /* voeg "..." toe bij afkappen */
  max-width: 140px;          /* pas aan naar breedte van je kolom */
  display: block;
}





@media screen and (max-width: 415px) {
 .adobe-product .menu {
  display: none;
 }
}

.dropdownDD {
 position: relative;
 height: 53px;
 width: 40px;
 top: -24px;
 display: flex;
 left: -5px;
 background: transparent;
 border: none;
 cursor: pointer;
 ul {
  position: absolute;
  background: var(--dropdown-bg);
  height: 110px;
  width: 120px;
  right: 0;
  top: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translatey(10px);
  transition: all 0.4s ease;
  li a {
   text-decoration: none;
   color: var(--theme-color);
   font-size: 12px;
  }
 }
}

.dropdownDD.is-active {
 ul {
  opacity: 1;
  pointer-events: all;
  transform: translatey(25px);
  li:hover {
   background-color: var(--dropdown-hover);
  }
 }
}

.buttonwrapperDD {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 width: 187px;
 margin-left: auto;
 @media screen and (max-width: 480px) {
  width: auto;
 }
}

.popupDD {
 position: absolute;
 padding: 30px 40px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 overflow-y: auto;
 box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
 transition: all 0.3s;
 z-index: 10;
 background-color: var(--popup-bg);
 width: 500px;
 visibility: hidden;
 opacity: 0;
 border-radius: 6px;
 display: flex;
 flex-direction: column;
 white-space: normal;
 @media screen and (max-width: 570px) {
  width: 100%;
 }
 &.visible {
  visibility: visible;
  opacity: 1;
 }
 &__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 &__subtitle {
  white-space: normal;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  a {
   color: var(--theme-color);
  }
 }
}

.contentbuttonwrapperDD .contentbuttonDD.statusbuttonDD.open.close {
 width: auto;
}

.contentsectionDD .close {
 margin-right: 0;
 width: 24px;
}

.checkboxwrapperDD {
 display: flex;
 align-items: center;
 font-size: 14px;
 font-weight: 400;
 & + .checkboxwrapperDD {
  margin: 20px 0 40px;
 }
}

.checkboxDD {
 display: none;
}

.checkboxDD + label {
 display: flex;
 align-items: center;
 &:before {
  content: "";
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--theme-color);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
 }
}

.checkboxDD:checked + label:before {
 background-color: #3a6df0;
 border-color: #3a6df0;
 background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
 background-position: 50%;
 background-size: 12px;
 background-repeat: no-repeat;
}

.contentbuttonwrapperDD {
 margin-top: auto;
 margin-left: auto;
 .open {
  margin-right: 8px;
 }
}
.appscardDD {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* ✅ houdt kaarten naast elkaar */
  align-items: stretch;
  gap: 20px; /* moderne manier i.p.v. margin-left */
  width: 100%;
}

.appcardDD {
  position: relative;
  height: 140px;
  flex: 1 1 calc(33.3% - 20px); /* 3 naast elkaar */
  font-size: 16px;
  background-color: var(--content-bg);
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: background-size 0.6s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔹 Fade overlay over de afbeelding */
.appcardDD::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 0;
  transition: background 0.3s ease;
}

/* Zorg dat tekst en icons boven de fade blijven */
.appcardDD > * {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.appcardDD:hover {
  
  background-size: 110%;
}

.appcardDD:hover::before {
  background: linear-gradient(
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* 🔹 Binnenkant */
.appcardDD svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.appcardDD img {
  width: 35px;           /* zelfde breedte als SVG */
  height: 35px;          /* vierkant, even hoog */
  margin-right: 10px;    /* zelfde ruimte naar de tekst */
 
  
}



.appcardDD span {
  display: flex;
  align-items: center;
}

.appcardsubtextDD {
  position: relative;
  top: 15px; /* schuift de tekst iets naar beneden */
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
}

/* Buttons onderaan */
.appcardbuttonsDD {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}

/* 📱 Responsive */
@media screen and (max-width: 1110px) {
  .appcardDD {
    flex: 1 1 calc(50% - 20px); /* 2 per rij */
  }
}

@media screen and (max-width: 565px) {
  .appcardDD {
    flex: 1 1 100%; /* 1 per rij */
  }
}



::-webkit-scrollbar {
 width: 6px;
 border-radius: 10px;
}

::-webkit-scrollbar-thumb {
 background: var(--scrollbar-bg);
 border-radius: 10px;
}

.adobeproductDD {
  cursor: pointer;
  pointer-events: auto;
  height: 35px;
  padding: 0 8px;
  box-sizing: border-box;
}

.post-row {
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.post-user {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 150px; /* vaste breedte */
}

.user-pfp {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 50%;
}

.post-title {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-category {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  width: 160px; /* vaste breedte */
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}




/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
/* ______________________________________________________________________________________________________*/
