/* Voeg een container toe voor de boxed layout */
.wrapper {
    width: 100%;
    max-width: 1600px; /* De maximale breedte van de website */
    margin: 0 auto; /* Zorg ervoor dat de container gecentreerd wordt */
    background-color: #f0f0f0;
}


body {
    font-family: "Rubik", sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #f6f3ef;
    font-size: 15px;
    color: #242e30;
}


/* Zorg ervoor dat de html en body de volledige hoogte van het scherm vullen */
html, body {
    height: 100%;
    margin: 0;
}


.links a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.message-table {
  width: 100%;
  display: table;

}


/* Algemene opmaak voor de header */
header {
    background-color: #111;
    color: #fdfdfb;
    padding-top: 5px;
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    border-top: #ffd400 solid 3px;
}


/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between; /* Zorgt voor ruimte tussen de secties */
    align-items: center; /* Verticale uitlijning */
    padding: 0 20px; /* Spatiëring aan de zijkanten */
    text-align: center;  /* Adds horizontal centering */
    width: 100%;
    box-sizing: border-box;
}

/* Elk deel krijgt aangepaste breedte: 40% - 20% - 40% */
.navbar .left {
    width: 40%;
    box-sizing: border-box;
}

.navbar .center {
    width: 20%;
    box-sizing: border-box;
}

.navbar .right {
    width: 40%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}

/* Als het rechtermenu in een ul zit, zorg dan dat deze ook goed is uitgelijnd */
.navbar .right ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Links uitgelijnd (Logo + Menu) */
.left {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px; /* Ruimte tussen logo en menu */
}

.logo img {
    width: 200px;
}

.menu {
    list-style: none; /* Verwijder standaard lijststijlen */
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    display: inline-block; /* Plaatst de lijstitems naast elkaar */
    margin: 0 15px; /* Ruimte tussen de items */
}

/* Stijl voor de links in de header */
.menu li a {
    color: #fdfdfb; /* Witte tekstkleur voor links */
    text-decoration: none; /* Verwijder onderlijnen */
    font-size: 16px; /* Groter lettertype voor de links */
    transition: background-color 0.3s ease; /* Vervagende overgang voor hover effect */
    padding: 5px;
    border-radius: 5px;
}

/* Hover-effect voor links */
.menu li a:hover {
    background-color: #2a2929;
    padding: 5px;
    border-radius: 5px;
}

/* Centraal uitgelijnd (Zoekbalk) */
.center {
    flex: 1;
    text-align: center;
}


#langSelect{
        width: 20%;
}

#seriesSelect, #langselect, #setSelect {
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    color: rgb(119,119,119); /* Verandert de tekstkleur naar rood */
}

#seriesSelect option {
    color: rgb(119,119,119); /* Verandert de tekstkleur naar rood */
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.search-form input {
    min-width: 200px; /* Minimum width on smaller screens */
    flex: 1;          /* Takes up remaining space */
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    margin-right: 5px;
    height: 40px;
    font-family: 'Rubik', san-serif;
    border-radius: 3px;
}

.search-form button {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    background-color: #ffd400;
    color: #fdfdfb;
    cursor: pointer;
    height: 40px;
    border-radius: 4px;
}

/* Hover-effect voor de zoekknop */
.search-form button:hover {
    background-color: #f1c802;
}


/* Rechts uitgelijnd (Login etc.) */
.right {
    display: flex;
    align-items: center;
}

.right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.right li {
    display: inline-block;
    margin-left: 20px;
}

.right a {
    color: #fdfdfb;
    text-decoration: none;
    font-size: 14px;
}

.right a:hover {
    text-decoration: underline; /* Onderstreping bij hover */
}

.user-greeting {
    font-size: 14px;
    margin-right: 20px;
}



/* Algemene opmaak voor de container (aangepast voor boxed layout) */
.container {
    display: flex;
    justify-content: space-between; /* Zorg ervoor dat de zijbalk en de hoofdinhoud ruimte delen */
    flex-wrap: wrap; /* Zorg ervoor dat de container items niet buiten het scherm vallen */
    max-width: 100%; /* Zorg ervoor dat de container maximaal de breedte van de pagina gebruikt */
    margin: 0 auto; /* Centreert de container in het midden */
    background-color: #f6f3ef;}

/* Stijl voor de zijbalk */
.sidebar-container {
    width: 300px; /* Breedte van de zijbalk */
    padding: 5px; /* Ruimte binnenin de zijbalk */
    margin: 25px;
    flex-shrink: 0;  /* Zorgt ervoor dat de sidebar niet krimpt */
}

.sidebar ul li {
    font-size: 14px;
}

.sidebar .filter-exclude-seller {
       font-size: 14px;
       margin-top: 10px;
       padding-top: 4px;
       border-top: 1px solid;
}

/* Stijl voor de hoofdinhoud */
.main-content {
    flex: 1;  /* Zorgt ervoor dat de hoofdinhoud de resterende ruimte opvult */
    padding: 20px; /* Ruimte rondom de inhoud */
    margin-left: 25px;
    margin-right: 25px;
    box-sizing: border-box;
    background-color: #f6f3ef;
}

/* Stijl voor de links in de zijbalk */
.sidebar a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    font-size: 18px;
}

.sidebar a:hover {
    background-color: #ddd; /* Hover effect voor links */
}

/* Footer stijl */
/* Algemene opmaak voor de footer */
.footer {
    background-color: #111;
    color: #fdfdfb;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

/* Optioneel: Flexbox voor de footer inhoud */
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Footer links */
.footer a {
    color: #fdfdfb;
    text-decoration: none;
    padding: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Voeg een flexbox toe om de footer altijd onderaan te plaatsen */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1; /* Zorgt ervoor dat de hoofdinhoud de resterende ruimte opvult */
}

/* Algemene padding en margin instellingen om ongewenste overflow te voorkomen */
*, *:before, *:after {
    box-sizing: border-box;
}

/* Algemene stijl voor de sidebar */
.sidebar {
   /* background-color: #f7f7f7; */
    padding: 0px;
    width: 100%;
    float: left;
}

/* Stijl voor het filterblok */
.filter-block {
    background-color: red;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.filter-block h3 {
    margin-top: 0;
}


.filter-block ul {
    list-style-type: none; /* Verwijder de bullets */
    padding-left: 0; /* Verwijder de standaard inspringing van de lijst */
}





#showMoreSets {
    font-size: 10px;
    color: #000; /* Kleur van de tekst */
    text-decoration: none; /* Geen onderstreping standaard */
}

#showMoreSets:hover {
    text-decoration: underline; /* Onderstreping bij hover */
}

#showMoreSets:hover {
    background-color: transparent; /* Geen achtergrondkleur bij hover voor de "Meer sets" link */
}

/* Stijl voor de "Verkoop deze kaart" knop */
a button {
    background-color: #ffd400;
    color: #000;
    padding: 5px 10px; /* Ruimte rondom de tekst */
    border: none; /* Verwijder de rand */
    font-size: 12px; /* Tekstgrootte */
    cursor: pointer; /* Cursor verandert in handje bij hover */
    transition: background-color 0.3s; /* Zorgt voor een geleidelijke overgang */
}

/* Hover effect voor de "Verkoop deze kaart" knop */
a button:hover {
    background-color: #ffd400; /* Donkerder groen bij hover */
}


/* Stijl voor de "Reset filters" knop */
#resetButton {
    background-color: #f44336; /* Rood voor de resetknop */
    color: #fdfdfb;
    padding: 5px 10px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover effect voor de "Reset filters" knop */
#resetButton:hover {
    background-color: #da190b; /* Donkerder rood bij hover */
}

/* Maak de sidebar en andere secties flexibel zodat ze niet buiten de wrapper vallen */
.main-content {
    max-width: 100%; /* Zorg ervoor dat de zijbalk en main content binnen de wrapper vallen */
    width: 100%;
}



/* Basis styling voor de container */
.container-2 {
    margin: 0 auto;
    padding: 20px;
}



/* Container for the image */
.product-thumb-container {
    position: relative;
    display: inline-block;
}

/* Default thumbnail size */
.product-thumb {
    width: 20px; /* Default size */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smooth and playful transition */
    cursor: pointer; /* Optional: To indicate the thumbnail is interactive */
    z-index: 1; /* Ensure the original thumbnail stays behind when hovered */
    transform-origin: center; /* Set origin for scaling */
}

/* Hover effect: Scale the image to make it bigger */
.product-thumb-container:hover .product-thumb {
    transform: scale(7.5) rotate(5deg) translateY(-10px); /* Playful scale, rotation, and vertical translation */
    z-index: 9999; /* Ensure it's on top of other thumbnails */
    position: relative; /* Allow it to float above others */
    border-radius:1px;
    background-color: transparent;
}

/* Optionally, you could control the space around the thumbnail if needed */
.product-thumb-container:hover {
    z-index: 9999; /* Ensure the whole container has a higher stacking order */
}

/* Tabelstijl */
table {
    width: 100%; /* Zorg ervoor dat de tabel de volledige breedte van de container inneemt */
    border-collapse: collapse; /* Verwijdert verticale strepen en maakt het overzichtelijk */
   /* margin-top: 20px; /* Ruimte boven de tabel */
}

thead {
    border: 1px solid #ddd;
}

/* Styling voor tabelkoppen */
th {
    text-align: left; /* Zorg ervoor dat de tekst in de header aan de linkerkant uitgelijnd is */
    padding: 10px;
    background-color: #f4f4f4; /* Achtergrondkleur voor de kopjes */
    font-weight: bold; /* Vetgedrukte tekst voor de kopjes */
}

/* Styling voor tabelcelllen */
td {
    padding: 10px;
    background-color: #fdfdfb; /* Achtergrondkleur voor de cellen */
    border: 1px solid #ddd; /* Zachte scheiding tussen rijen */
}


/* Hover effect voor de rijen */
tr:hover {
    background-color: #f9f9f9; /* Maak de rij lichter bij hover */
}



/* Styling voor de stap blokken */
.step-box {
    margin: 20px;
    display: flex;
    align-items: center;
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    background-color: #fdfdfb;
    border-radius: 4px;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Algemeen stijlen voor de stap nummers */
.step-number {
    background-color: #c1dade;
    color: #242e30;
    font-size: 20px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Voor bredere tekst zoals "2a" */
.step-number.wide {
  width: auto;  /* Laat de breedte aanpassen aan de inhoud */
  min-width: 34px;  /* Minimale breedte */
  padding: 0 10px;  /* Voeg wat horizontale padding toe */
}


/* Specifieke stijl voor de verkoopdetail pagina */
body.verkoopdetail .step-number {
    width: 6%;  /* Breedte op de verkoopdetail pagina */
}

/* Specifieke stijl voor de verkooppagina */
body.verkooppagina .step-number, body.verkoopsets .step-number {
    width: 34px;  /* Breedte op de verkooppagina (50% van de breedte van de container) */
}
.step-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* Stijl voor de link en het hover-effect */
#sets-container a {
    text-decoration: none;
    color: #333; /* Verander de kleur van de link */
    display: inline-block; /* Zorgt ervoor dat de naam en het symbool mooi naast elkaar staan */
    margin: 2px;
}

#sets-container a:hover {
    text-decoration: underline; /* Alleen onderstrepen bij hover */
}

/* Tabelstijl voor de naam en het symbool */
#sets-container table {
    width: auto;
    border-collapse: collapse;
    margin: 10px 0;
}

#sets-container table td {
    padding: 5px;
}

#sets-container table td img {
    display: block; /* Zorgt ervoor dat de afbeelding goed uitgelijnd is */
    margin: 0 auto; /* Centreert de afbeelding binnen de cel */
}

input.italic-placeholder::placeholder {
    font-style: italic;

}

    .product-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

.product-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px; /* Ruimte tussen elementen */
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Zachte moderne schaduw */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    background-color: #fdfdfb;
    border-radius: 4px;
}

    .product-thumb-container-verkoper img {
        width: 75px;
        height: auto;
        object-fit: cover;
        margin-right: 20px;
        background-color: transparent;
    }

    .product-details-verk {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }

    .product-details-verk h3 {
        margin: 0;
    }

    .product-details-verk p {
        margin: 0;
        font-size: 0.9rem;
        color: #555;
    }

    .product-meta {
        display: flex;
        flex-direction: column;    
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        text-align: right;
        min-width: 70px;
    }

    .product-meta span {
        font-size: 0.9rem;
        color: #333;
    }

    .product-meta .price {
        font-weight: bold;
        font-size: 1.2rem;
        color: #000;
    }

/* Algemeen uiterlijk voor alle kwaliteiten */
.quality {
    display: inline-block;
    font-size: 10px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    width: 50px;
}

#quality-options, .taalkeuze {
        margin-top: 10px;
}


/* Specifieke kleuren per kwaliteit */
.quality.gemmt {
    border: 2px solid #D4AF37; /* Goud */
    color: #D4AF37;
}

.quality.mt {
    border: 2px solid #8BC34A; /* Lichtgroen */
    color: #8BC34A;
}

.quality.nmmt {
    border: 2px solid #CDDC39; /* Lime */
    color: #CDDC39;
}

.quality.nm {
    border: 2px solid #f9e111; /* Geel */
    color: #ffe500;
}

.quality.exnm {
    border: 2px solid #FFC107; /* Amber */
    color: #FFC107;
}

.quality.ex {
    border: 2px solid #FF9800; /* Oranje */
    color: #FF9800;
}

.quality.vgex {
    border: 2px solid #FF5722; /* Diep oranje */
    color: #FF5722;
}

.quality.vg {
    border: 2px solid #E91E63; /* Roze */
    color: #E91E63;
}

.quality.good {
    border: 2px solid #9C27B0; /* Paars */
    color: #9C27B0;
}

.quality.pl {
    border: 2px solid #F44336; /* Rood */
    color: #F44336;
}

.quality.unknown {
    border: 2px solid #9E9E9E; /* Grijs voor onbekend */
    color: #9E9E9E;
}

.grading-info {
    background-color: #fdfdfb;
    border: 1px solid #ccc; /* Standaard border kleur */
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40px; /* Reserveer ruimte */
    min-width: 40px; /* Reserveer ruimte */
    border-radius: 8px;
}

.grading-info.no-grading {
    border: none; /* Verwijder de border als er geen grading is */
    background-color: transparent; /* Zorg dat de achtergrond onzichtbaar is */
}

.grading-info .grading-score {
    font-size: 18px; /* Maak het cijfer groter */
    font-weight: bold; /* Maak het cijfer vetgedrukt */
    color: #333; /* Stel een neutrale tekstkleur in */
}

.price-info {
    text-align: right; /* Tekst rechts uitlijnen */
    flex: 1; /* Zorg dat price-info ruimte inneemt */
}

.grading-info .grading-logo {
    width: 50px; /* Breedte van het logo */
    height: auto; /* Behoud de aspect ratio */
    object-fit: contain; /* Zorg dat het logo netjes wordt weergegeven */
}

.button, .account-form input[type="submit"],
.password-form input[type="submit"] {
    color: #242e30;
    background-color: #ffd400;
    padding: 5px;
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease; 
    display: inline-block;
    font-family: 'Rubik', san-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: auto;
    border-radius: 4px;
    border: inherit;
}

.button.delete svg {
    display: block;
    vertical-align: middle;
}

.button:hover, .account-form input[type="submit"]:hover,
.password-form input[type="submit"]:hover {
    background-color: #f1c802;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Schaduw toevoegen */
}


.account-form input[type="submit"],
.password-form input[type="submit"] {
    min-width: 120px; /* Geeft een minimale breedte voor betere weergave */
    margin-left: auto;
    margin-right: auto;
}






.sort-options {
    display: flex;
    justify-content: flex-end; /* Rechts uitlijnen */
    align-items: center;
    margin-bottom: 20px; /* Ruimte onder de sorteeropties */
}

.sort-label {
    margin-right: 10px; /* Ruimte tussen label en dropdown */
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.sort-dropdown {
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fdfdfb;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sort-dropdown:hover {
    border-color: #888;
    background-color: #f0f0f0;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #c1dade;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}


.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination a, .pagination .ellipsis {
  color: #242e30;
  padding: 8px 16px;
  text-decoration: none;
  margin: 0 4px;
}

.pagination a:hover:not(.active):not(.disabled) {
  background-color: #555;
    color: #fdfdfb;
  border-radius:3px;
}

.pagination .active {
  background-color: #555;
  color: #fdfdfb;
    border-radius:3px;
}

.pagination .disabled {
  color: #ddd;
  pointer-events: none;
    border-radius:3px;
}

.pagination .ellipsis {
  cursor: default;
}


.price-slider {
    margin: 20px 0;
}

.slider-container {
    margin-top: 10px;
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
}

.slider-row {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.slider-label {
    width: 50px;
}

.slider-row input[type="range"] {
    flex: 1;
    margin: 0 10px;
}

.price-value {
    width: 100px;
    text-align: right;
}

.range-inputs {
    position: relative;
    width: 100%;
    height: 20px;
}

.range-inputs input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 10px;
    opacity: 0;
}

.range-inputs input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border: 0 none;
    background-color: red;
    cursor: pointer;
    -webkit-appearance: none;
}

.range-inputs::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    background: #ddd;
    transform: translateY(-50%);
}

#price-display {
    margin-left: 10px;
    font-weight: normal;
}

.price-display {
    margin: 10px 0;
}

.price-display span {
    margin-right: 15px;
}


.image-management {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
}

.current-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.image-container {
    text-align: center;
}

.image-container img {
    margin-bottom: 5px;
}

.help-text {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}


.del-images {
    display: flex;
    flex-wrap: wrap; /* Zorgt ervoor dat ze netjes blijven als er veel zijn */
    gap: 10px; /* Ruimte tussen de afbeeldingen */
}

.del-image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zorgt ervoor dat de checkbox gecentreerd staat */
    text-align: center;
    max-width: 150px; /* Optioneel: Stel een max breedte in voor uniformiteit */
}

.del-image-container img {
    max-width: 150px;
    height: auto;
}

.del-image-container input {
    margin-top: 5px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-slot {
    width: 100%;
    position: relative;
    border: 2px dashed #ccc;
    overflow: hidden;
}

/* Logo specific styles */
.image-slot[data-type="logo"] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* Banner specific styles */
.image-slot[data-type="banner"] {
    width: 100%;
    height: 200px;
}

.image-upload-label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.image-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.plus-icon {
    font-size: 2rem;
    color: #666;
}

.upload-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.8);
    color: #fdfdfb;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0;
    line-height: 1;
}

.delete-button[data-type="logo"] {
    top: 20px;
    right: 35px;
}

.delete-button:hover {
    background: rgba(255, 0, 0, 1);
}

/* aanmeld */

.account-form-container {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.account-form,
.password-form, .shop-images, .account-section {
    background: #fdfdfb;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.account-section {
    margin-bottom: 20px;
}

.account-form h2,
.password-form h2 {
    text-align: center;
}

.account-form form,
.password-form form {
    display: flex;
    flex-direction: column;
}

.account-form label,
.password-form label {
    font-weight: bold;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"],
.password-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}

input#phone {
    padding: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}

.password-requirements {
    background: #f8f8f8;
    padding: 10px;
    margin-top: 10px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
}

.password-requirements li {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}


.greyed-out {
            background-color: #f0f0f0;
            color: #666;
            border: 1px solid #ccc;
        }

  .form-section {
            margin-bottom: 20px;
            padding: 15px;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
        }
        .form-section h3 {
            margin-top: 0;
            font-size: 18px;
            color: #333;
            border-bottom: 1px solid #ccc;
            padding-bottom: 5px;
        }

    .error-message-login, .error-message-account {
        color: red;
        font-size: 0.9em;
        margin-top: 5px;
        min-height: 1.2em; /* Reserveert ruimte voor één regel tekst */
        display: block; /* Zorgt dat het element altijd ruimte inneemt */
    }
    .password-requirements {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 10px;
    }
    .password-section {
        margin-bottom: 15px; /* Voegt wat extra ruimte toe onder de hele wachtwoord sectie */
    }


    /* pwd reveal */


    .password-requirements {
        font-size: 0.9em;
        color: #666;
        margin-top: 5px;
    }
    .password-section {
        margin-bottom: 15px;
    }
    .password-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    .toggle-password {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
        color: #666;
    }
    .toggle-password:hover {
        color: #333;
    }

    input#birthdate, input#phone {
    font-family: 'Rubik', san-serif;
    font-size: 16px;
}

.form-links {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.form-links p {
    margin: 0.5rem 0;
}

.form-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: bold;
}

.form-links a:hover {
    text-decoration: underline;
}

    #stad::placeholder {
        font-style: italic;
        color: #888; /* Optioneel */
    }

.age-requirement, .phone-req {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
    font-style: italic;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 16px; /* Zorgt ervoor dat de tekst niet krimpt bij wisseling */
    font-family: 'Rubik', san-serif; /* Zorgt voor consistente weergave */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.password-input-wrapper button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
}

.alert-message {
    background-color: #f3d9e5;
    color: #000; 
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 4px solid red;
    text-align: center; 
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: table; /* Verandert van inline-block naar table */
    margin-left: auto; /* Centreert het blok horizontaal */
    margin-right: auto; /* Centreert het blok horizontaal */
}

.success-message {
    background-color: #e7f3d9; /* Zachter groen ipv geel */
    color: #2e7d32; /* Donkergroen voor tekst */
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 4px solid #4caf50; /* Groene lijn aan linkerkant */
    text-align: center; /* Links uitlijnen ipv centreren */
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Subtiele schaduw */
    display: table; /* Verandert van inline-block naar table */
    margin-left: auto; /* Centreert het blok horizontaal */
    margin-right: auto; /* Centreert het blok horizontaal */
}


.success-message a {
    color: #000;
    text-decoration: none;
}

.success-message a:hover {
    text-decoration: underline;
}


.button.status-update {
    background-color: #007BFF;
}

.button.status-update:hover {
    background-color: #3399FF;
}

.button.reset {
    background-color: #555;
    color: #fdfdfb;
    padding: 3px 15px;
}

.button.reset:hover {
    background-color: #333;
    color: #fdfdfb;
}



.button.delete {
    background-color: #dc3545;
    color: #fdfdfb;
}

.button.delete:hover {
    background-color: #c82333;
    text-decoration: none!important;
}



.status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.8em;
    margin-left: 8px;
}

.status-badge.active {
    background-color: #22c55e;
    color: #fdfdfb;
}

.status-badge.paused {
    background-color: #f59e0b;
    color: #fdfdfb;
}

.info-message    {
    background-color: #f59e0b;
    color: #3c763d;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.account-links {
    display: flex;
    gap: 15px; /* Ruimte tussen knoppen */
    justify-content: center; /* Centreert de knoppen */
    flex-wrap: wrap; /* Zorgt ervoor dat knoppen op kleinere schermen op de volgende regel komen */
}


.button.active {
    background-color: #aaa; /* Grijze kleur voor actieve pagina */
    color: #fdfdfb;
    cursor: default;
    pointer-events: none; /* Voorkomt klikken */
}

    .message-thread { 
    max-width: 800px;
    background-color: #fdfdfb;
    padding: 18px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    background-color: #fdfdfb;
    border-radius: 4px;
    margin: 0 auto;
    margin-bottom: 20px;
}
    .sent-message { 
        padding: 10px; 
        margin: 5px 0 5px auto; 
        border-radius: 15px 15px 0 15px;
        max-width: 70%;
        background-color: #fffcf0;
}
    }
    .received-message { 
        background-color: #f1f1f1; 
        padding: 10px; 
        margin: 5px auto 5px 0;
        border-radius: 15px 15px 15px 0;
        max-width: 70%;
    }


        /* Formulier container */
.message-form-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Label styling */
.message-form-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Tekstveld styling */
.message-form-container textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: none;
}

        .sent-message { 
            background-color: #e3f2fd; 
            padding: 10px; 
            margin: 5px 0 5px auto; 
            border-radius: 15px 15px 0 15px;
            max-width: 70%;
        }
        .received-message { 
            background-color: #f1f1f1; 
            padding: 10px; 
            margin: 5px auto 5px 0;
            border-radius: 15px 15px 15px 0;
            max-width: 70%;
        }
        .product-link {
            text-align: center;
            margin-bottom: 15px;
        }
        .product-link a {
            text-decoration: none;
            font-weight: bold;
            color: #007bff;
        }
        .product-link a:hover {
            text-decoration: underline;
        }

        .message-link, .cart-link {
            position: relative;
            padding-right: 10px;
        }
        
        .notification-badge {
            position: absolute;
            top: -8px;
            right: 0px;
            background-color: #ff4444;
            color: #fdfdfb;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: bold;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
    
.berichtentitel {
    display: flex;
    align-items: center;
    gap: 5px; /* Kleine ruimte tussen titel en link */
    border-bottom: 1px solid silver;
    margin-bottom: 20px;
}

.berichtproduct h3 {
    margin: 0;
    display: inline; /* Zorgt ervoor dat de titel en link op één regel blijven */
}

.linkje {
    font-size: 14px; /* Kleinere letters */
    font-weight: normal;
    display: inline;
}

.linkje a {
    text-decoration: none;
        color: #000;
}

.linkje a:hover {
    text-decoration: underline;
}

.other-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin: 20px 0;
    text-align: center;
    gap:10px;
}

.seller-card {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fdfdfb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seller-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seller-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.1em;
}

.seller-info .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
    margin: 5px 0;
}



.sidebar-message {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px;
    gap: 10px;
}

.sidebar-message a {
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.message-image {
    height: 70px;
    width: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

.message-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.contact-name {
        font-size: 0.85em;
            font-weight: inherit;
}

.message-meta {
    font-size: 0.8em;
    color: #666;
}

.message-subject {
    font-weight: bold;
}


.message-info {
    font-size: 0.8em;
    color: #888;
}

.unread {
    background-color: #f8f9fa;
}

.unread-indicator {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}


.language-flags {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flag-link {
    display: inline-block;
    border-radius: 50%;
    padding: 2px;
    transition: all 0.2s ease;
    border: 2px solid transparent; /* Voorkomt verspringen */
}

.flag-link img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 50%;
}

.flag-link.active, .flag-link:hover {
    border-color: #ffd400;
}

.flag-link.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.upload-container {
    margin-bottom: 20px;
}

.upload-info {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.logo-preview {
    max-width: 100px;
    max-height: 100px; /* Verlaagd naar 100px */
    margin-top: 10px;
    border: 1px solid #ddd;
    display: none;
    overflow: hidden;
    border-radius: 50%;
}

.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Specifieke aanpassing voor de banner */
#shop_banner_preview, #shop_logo_preview {
    border-radius: inherit;
    max-width: 100%;
}

#shop_logo_preview img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#shop_banner_preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

        .shop-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 5px;
            border: solid 3px grey;
    padding: 3px;
        }
        .shop-details {
            flex-grow: 1;
        }
        .shop-meta {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: #555;
        }
        .shop-actions {
            display: flex;
            gap: 10px;
        }


.error-message.show {
    display: block;
}

.error-message-account.show {
    display: block;
}

        .featured-section {
            margin-top:70px;
            background: #f6f3ef;
        }

        .section-title {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }

        .news-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .news-card {
            background: #fdfdfb;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }


        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-content {
            padding: 1rem;
        }

        .news-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .news-summary {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .view-all-button {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            color: white!important;
            text-decoration: none;
            background-color: #555;
            color: #fdfdfb;
            border-radius:4px;
        }

        .view-all-button:hover {
            background-color: #333;
            color: #fdfdfb;
        }

        .top-shops {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .talen {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }

h1 {
    text-align: center;
        font-size: 2rem;
}

h2 {
    text-align: center;
        font-size: 1.5rem;
}

h3 {
        font-size: 1rem;
}


.intro-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Taal selectie grid */
.language-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    justify-content: center;
}

.language-link {
    text-decoration: none;
}

.language-card {
    background: #fdfdfb;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.language-img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.language-title {
    margin: 0.5rem 0;
    color: #333;
}

/* Stijl voor elke taalbox (zoals een shop) */
.shop-box {
    flex: 1;
    max-width: 180px; /* Zorgt ervoor dat ze niet te groot worden */
    background: #fdfdfb;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}



/* Container voor de vlag-iconen */
.shop-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.talen .shop-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
    border: solid 3px transparent; /* Transparent border by default */
    padding: 3px;
    transition: border-color 0.3s ease; /* Smooth transition effect */
}

/* Apply border when hovering over the parent .talen element */
.shop-box:hover .shop-logo {
    border: solid 3px #ffd400;
}

.shop-box .shop-name {
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-box:hover .shop-name {
    text-decoration: underline;
}

/* Kopen & Verkopen sectie styling */
.kopen-verkopen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    background-color: inherit !important;
}

.kopen-verkopen-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.kopen-verkopen-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.2s ease-in-out;
}



.kopen-verkopen-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.kopen-verkopen-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}


.shop-images {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 20px;
}

#stad {
    margin-bottom: 20px;
}

.shop-filter {
    margin-top: 10px;
}

.shop-banner-container-verkoper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop-banner-verkoper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 20px;
}

.shop-banner-verkoper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-logo-verkoper {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 25px;
    z-index: 2;
}

.shop-logo-verkoper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid grey;
    padding: 5px;
}





.card-container {
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
    padding: 1.5rem;
    background-color: #fdfdfb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    overflow: hidden;
}

.product-details {
    display: flex;
    gap: 2rem;
}

.product-image {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    align-items: flex-start;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4.75% / 3.5%;
}

.product-info {
    flex: 1;
    display: flex;
}

.product-info table {
    width: 100%;
    border-collapse: collapse;
    height: 100%;
    align-self: stretch;
}

.product-info tr {
    height: 20%; /* Each row takes up equal portion of table height */
}

.product-info th,
.product-info td {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

.product-info th {
    width: 30px;
    font-weight: 600;
}

.additional-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.info-item {
  display: flex;
  align-items: center;
}



.info-item a, 
.info-item button, 
.info-item .button, 
.sell-button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item form {
  margin: 0;
  padding: 0;
}

/* Hover states */
.info-item a:hover svg,
.info-item button:hover svg,
.sell-button:hover svg {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Icon stroke darkens on hover */
.info-item a:hover svg path,
.info-item button:hover svg path,
.sell-button:hover svg path {
  stroke: #000;
  transition: stroke 0.2s ease;
}

/* Adding tooltip functionality (optional) */
.info-item {
  position: relative;
}

.info-item:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fdfdfb;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Tooltip labels - add these attributes to your HTML elements if you want tooltips */
/*
.info-item:nth-child(1) { data-tooltip: "Stuur bericht"; }
.info-item:nth-child(2) { data-tooltip: "Zet op wenslijst"; }
.info-item:nth-child(3) { data-tooltip: "Verkoop deze kaart zelf"; }
*/

.info-label {
    font-weight: 300;
    margin-right: 0.5rem;
}

.info-value {
    color: #666;
}

.new_form-section {
            background: #fdfdfb;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border: 1px solid #e1e1e1;
        }

        .new_form-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e1e1e1;
            color: #333;
        }

        .new_input-group {
            margin-bottom: 1rem;
        }

        .new_input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .new_input-group input[type="text"],
        .new_input-group input[type="number"],
        .new_input-group select,
        .new_input-group textarea {
            width: 100%;
            padding: 0.2rem;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.15s ease-in-out;
            font-family: 'Rubik', san-serif;
        }

        .new_input-group input[type="file"] {
            width: 100%;
            padding: 0.5rem;
            border: 1px dashed #d1d5db;
            background-color: #f9fafb;
        }

        .new_radio-group {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .new_radio-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .new_grading-details {
            margin-left: 1.5rem;
            padding-left: 1.5rem;
            border-left: 2px solid #e5e7eb;
        }

        .new_product-details {
            background-color: #f9fafb;

            padding: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 2rem;
        }

        .new_product-image {
            flex: 0 0 200px;
        }

        .new_product-image img {
            width: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .new_product-info {
            flex: 1;
        }

        .new_submit-button {
            background-color: #c1dade;
            color: #000;
            padding: 0.75rem 1.5rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.15s ease-in-out;
            font-family: 'Rubik', san-serif;
        }

        .new_submit-button:hover {
            background-color: #ffd400;
        }

        .new_photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }




.sellers-table-container {
    margin: 20px 0;
    overflow-x: auto;
}

.sellers-table {
    width: 100%;
    border-collapse: collapse;
    background: #fdfdfb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sellers-table th,
.sellers-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sellers-table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.detail-column {
    text-align: center;
    width: 80px;
}

.icon-check {
    color: #c1dade;
    font-weight: bold;
}

.icon-cross {
    color: #dc3545;
}


.view-listing {
    display: inline-block;
    padding: 6px 12px;
    background-color: #007bff;
    color: #fdfdfb;
    text-decoration: none;
    font-size: 0.9em;
}

.view-listing:hover {
    background-color: #0056b3;
}



/* Styling voor de productafbeeldingen sectie */
.product-images-shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin: 25px 0;
}

.product-image-shop {
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bewerken {
    background-color: #fffcf0;
    padding: 20px;
    margin-top: 20px;
    border: 3px dashed #c1dade;
}


.seller-info-card {
    background: #fdfdfb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 4px;
}

.seller-info-header {
    background-color: #333;
    border-bottom: 1px solid ##c1dade;
    padding: 1rem 1.5rem;
}

.seller-info-header h2 {
    color: #fdfdfb;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    color: #f97316;
    font-size: 1.2rem;
}

.seller-info-content, .kaart-info-content {
    padding: 1.5rem;
    margin-bottom: 20px;
}

.kaart-info-content { 
    width: 100%;
}

/* Informatiekolom met vaste hoogte */
.kaart-info-content {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
}

/* Kleinere padding voor info-rijen */
.kaart-info-content .info-row {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    min-height: 30px; /* Minimale hoogte voor elke rij */
    display: flex;
    align-items: center;
}

.kaart-info-content .info-row:last-child {
    border-bottom: none;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    color: #242e30;
}

.info-price {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 700;
}


/* Aangepaste stijlen voor de description-row */
.description-row {
    display: block; /* Veranderd naar block voor volledige breedte */
}

.description-row .info-label {
    display: block;
    margin-bottom: 0.5rem;
}

.info-description {
    color: #374151;
    width: 100%;
    margin: 0;
    line-height: 1.5;
}

.info-value {
    color: #374151;
}



.product-images-info {
    display: flex;
    justify-content: flex-start; /* links uitlijnen */
    align-items: center;
    gap: 20px; /* 20px ruimte tussen de items */
}

.product-image-info {
    width: 250px;
    height: 250px;
    object-fit: cover; /* Vul de ruimte door de afbeelding te croppen naar het centrum */
    object-position: center; /* Focus op het midden van de afbeelding */
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.photos-row {
    flex-direction: column;
    align-items: flex-start;
}

.seller-photos {
    width: 100%;
    margin-top: 20px;
}

.no-images {
    color: #777;
    font-style: italic;
    margin-top: 5px;
}

        .edit-section {
            margin-top: 30px;
            padding: 15px;
            background: #fff4e5;
            border: 1px solid #ffcc80;
        }
        .edit-section input, .edit-section select, .edit-section textarea {
            width: 100%;
            padding: 8px;
            margin: 5px 0;
            border: 1px solid #ccc;
        }
        .edit-section button {
            background: #c1dade;
            color: #fdfdfb;
            padding: 10px;
            border: none;
            cursor: pointer;
        }
        .edit-section button:hover {
            background: #ffd400;
        }

.buy-button-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 15px;
}

.buy-button {
    font-family: "Rubik", sans-serif;
    background-color: #ffd400;
    color: #242e30;
    padding: 12px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.buy-button:hover {
    background-color: #f1c802;
}

.buy-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.buy-button {
    display: flex;
    align-items: center;
}

.cart-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.editor {
    display: flex;
    align-items: center;
    gap: 4px;
}

 .info-winkel a {
        color: #000;
        text-decoration: none;
    }
    
    .info-winkel a:hover {
        text-decoration: underline;
    }

    .danger-zone {
    border: 3px dashed #ff0000;
    padding: 20px;
    margin-top: 40px;
    background-color: #fdfdfb;
}

.danger-zone h2 {
    color: #ff0000;
}

.warning-box {
    background-color: #fff8f8;
    border-left: 4px solid #ff0000;
    padding: 15px;
    margin-bottom: 20px;
}

.warning-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.delete-account {
    background-color: #ff0000;
    color: #fdfdfb;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.delete-account:hover {
    background-color: #cc0000;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.deleted-user {
    color: #888;
    font-style: italic;
}
.message-actions {
    position: absolute;
    top: 5px;
    right: 5px;
}
.delete-btn {
    color: #999;
    text-decoration: none;
}
.delete-btn:hover {
    color: #f44336;
}
.sidebar-message {
    position: relative;
}

.view-all {
    font-size: 10px;
    margin-top: 5px;
    margin-left: 10px;
}

#land {
    font-size: 16px;
    font-family: 'Rubik', san-serif;
    margin-bottom: 10px;
}

.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

.land {
    margin-top: 20px;
}

.waarschuwing {
    margin-top: 20px;
    font-style: italic;
    text-align: center;
}

.shop-info {
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.filter-select {
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3sease;
    font-family: 'Rubik', san-serif;
    margin-top: 10px;
}

.bericht-link a {
  color: #000000;           /* Zwarte tekstkleur */
  text-decoration: none;    /* Geen onderstreping standaard */
}

.bericht-link a:hover {
  text-decoration: underline; /* Onderstreping bij hover */
}

/* Nieuwe CSS voor ongelezen berichten */
.unread .bericht-link a {
  font-weight: bold;
}

.unread-badge {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ffc300;
  border-radius: 50%;
  vertical-align: middle;
}

h3 a, .product-details-verk a {
  color: #000; /* Zwarte tekstkleur */
  text-decoration: none; /* Verwijdert de standaard onderstreping */
  transition: text-decoration 0.3s ease; /* Soepele overgang voor de hover effect */
}

/* Hover stijl voor links binnen H3 elementen */
h3 a:hover, .product-details-verk a:hover {
  text-decoration: underline; /* Voegt onderstreping toe bij hover */
}

.icon-svg {
  vertical-align: bottom;
  display: inline-block;
}

.shop-meta span {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.search-form-verk {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
}

.search-form-verk input {
    min-width: 200px;
    flex: 1;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    margin-right: 5px;
    height: 40px;
    font-family: 'Rubik', san-serif;
}



.wishlist-button svg path {
    transition: fill 0.3s ease;
}

.wishlist-button.active svg path {
    fill: #FF6B6B !important;
}

.wishlist-button:hover svg path {
    fill: #FFCDD2;
}

.wishlist-button.active:hover svg path {
    fill: #E53935 !important;
}

  /* Additional styles specific to the wishlist page */
        .empty-wishlist {
            text-align: center;
            padding: 40px 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .empty-wishlist svg {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            fill: #ddd;
        }
        
        .wishlist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .wishlist-card {
            border: 1px solid #ddd;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            background-color: #fdfdfb;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border-radius: 4px;
        }
        
        .card-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            position: relative;
        }
        
        .card-image img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .card-details {
            padding: 15px;
        }
        
        .card-name {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .card-set {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .card-price {
            font-weight: bold;
            color: #000;
            margin-bottom: 8px;
        }
        
        .card-seller {
            font-size: 13px;
            color: #777;
            margin-bottom: 10px;
        }
        
        .card-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .view-button, .remove-button {
            padding: 8px 12px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            font-size: 13px;
            transition: background-color 0.2s;
            border-radius: 4px;
        }
        
        .view-button {
            background-color: #ffd400;
            color: #242e30;
            flex-grow: 1;
            margin-right: 5px;
        }
        
        .view-button:hover {
            background-color: #f1c802;
        }
        
        .remove-button {
            background-color: #f44336;
            color: #fdfdfb;
            padding: 8px;
        }
        
        .remove-button:hover {
            background-color: #d32f2f;
        }
        
        .status-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 5px 10px;
            font-size: 12px;
            color: #fdfdfb;
        }
        
        .status-available {
            background-color: #32920d;
        }
        
        .status-paused {
            background-color: #FF9800;
        }
        
        .status-sold {
            background-color: #F44336;
        }
        
        .card-quality {
            position: absolute;
            top: 10px;
            left: 10px;
        }
        
        .filters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
        
        .filter-group {
            display: flex;
            align-items: center;
        }
        
        .filter-group label {
            margin-right: 8px;
            font-weight: bold;
        }
        
        .filter-group select {
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        
        .notification {
            background-color: #c1dade;
            color: #fdfdfb;
            padding: 10px 20px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

    .view-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none; /* This prevents click events */
}

/* Nieuwe aanpak voor inactive cards zonder opacity op parent */
.wishlist-card.inactive {
    border-color: #cccccc;
    background-color: #f9f9f9;
}

/* Afbeelding grijs maken maar badges intact laten */
.wishlist-card.inactive .card-image {
    background-color: #f0f0f0;
}

.wishlist-card.inactive .card-image img {
    filter: grayscale(95%);
}

/* Tekstkleuren aanpassen */
.wishlist-card.inactive .card-name,
.wishlist-card.inactive .card-set,
.wishlist-card.inactive .card-seller {
    color: #999;
}

.wishlist-card.inactive .card-price {
    color: #777;
}


/* View button disabled style */
.view-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* Kwaliteitsbadge en taalafbeelding verlagen in opacity voor inactieve items */
.wishlist-card.inactive .card-quality {
    opacity: 0.6;
    color: #666666;
    border: solid #666666;
}

.wishlist-card.inactive .card-set img {
    filter: grayscale(95%);
    opacity: 0.7;
}

.winkel-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0;
  margin-bottom: 60px;
  padding: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2sease-in-out, box-shadow 0.2sease-in-out;
    border: 1px solid #e1e1e1;
      border-radius: 4px;
  background-color: #fdfdfb;
}

.winkel-meta span {
  display: flex;
  align-items: center;
  margin: 5px 0;
  /* Je kunt ook een minimale breedte instellen als je wilt */
  /* min-width: 200px; */
}



.explainer {
    margin-top: 20px;
    margin-bottom: 40px;
}

.hero-background {
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    margin: -20px -45px 30px -45px; /* Negatieve marges om de padding van container te compenseren */
    padding: 30px;
}

.hero-background .featured-section {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    margin-bottom: 20px;
}

.intro-text {
    width: 80%;
    font-size: 18px;
}


 .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .card-item {
            border: 1px solid #e1e1e1;
            overflow: hidden;
            background-color: #fdfdfb;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        .card-image-set {
            width: 100%;
            height: 250px;
            object-fit: contain;
            background-color: #f8f8f8;
            padding: 10px;
            box-sizing: border-box;
        }
        .card-info {
            padding: 10px;
            text-align: center;
        }
       
        .card-number {
            color: #555;
            font-size: 14px;
        }

         .cards-grid .card-number {
    color: #fdfdfb;
    background-color: #000;
}
         .cards-grid .card-name {
            font-size: 14px;
            font-weight: inherit;
        }


        .cards-grid .card-price {
            color: green;
        }
      
      
        .card-sellers {
            color: #555;
            font-size: 12px;
            margin-top: 3px;
            min-height: 16px; /* Zorgt voor consistente hoogte */
        }
        .card-link, .product-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .set-header {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }
        .set-info {
            margin-bottom: 15px;
        }
        .language-selector {
            margin-bottom: 20px;
            text-align: right;
        }
        .language-selector select {
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
            font-size: 14px;
        }
        .language-selector button {
            padding: 8px 16px;
            background-color: #0066CC;
            color: #fdfdfb;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin-left: 10px;
        }
        .language-selector button:hover {
            background-color: #0055AA;
        }
        .stats-box {
            background-color: #f8f8f8;
            padding: 15px;
            margin-bottom: 20px;
        }
        .stats-box p {
            margin: 5px 0;
        }
        .no-cards {
            text-align: center;
            padding: 30px;
            background-color: #f8f8f8;
            margin-top: 20px;
        }
        .sets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.set-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
    background-color: #fdfdfb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;  /* Zorgt dat alle items dezelfde hoogte hebben */
    border-radius: 4px;
}

.set-image {
    width: 100%;
    height: 70px;  /* Vaste hoogte voor afbeeldingen */
    object-fit: contain;
    margin-bottom: 10px;
}

.set-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    height: 2.8em;  /* Vaste hoogte voor 2 regels tekst */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.set-info {
    color: #666;
    font-size: 0.9em;
    margin-top: auto;  /* Push to bottom */
}

.release-date {
    margin-top: 5px;
    color: #888;
    font-size: 0.8em;
}

.set-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;  /* Zorgt dat de link de volledige hoogte inneemt */
}
        
        .sets-header {
            margin-bottom: 20px;
        }
        
        
        .series-heading {
            font-size: 18px;
            margin-top: 60px;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e0e0e0;
            color: #333;
        }
        
        .language-selector {
            margin-left: auto;
        }
        
        select {
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
    font-family: 'Rubik', san-serif;
        }

.seller-info-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.seller-info-header h2 {
    margin: 0;
    flex: 1;
}

.bekeken {
    font-size: 0.9em;
    color: #777;
    white-space: nowrap;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 5px;
}

.eye-icon {
    vertical-align: middle;
}

.sidebar-messages .message-subject {
    font-size: 12px;
}

.sidebar-messages .contact-name {
    font-size: 11px;
    font-weight: 500;
}

.filter-button {
    background-color: #555;
    color: white!important;
    padding: 3px 15px;
}

.filter-button:hover {
    background-color: #333;
    color: #fdfdfb;
}


.edit-button {
    background-color: #c1dade;
    color: #242e30;

}

.edit-button:hover {
    background-color: #adc5c9;
    text-decoration: none!important;
}



.zoek-button {
    background-color: #c1dade;
    color: #242e30;

}

.zoek-button:hover {
    background-color: #adc5c9;
    text-decoration: none!important;
}



.verkoop-menu-button {
    background-color: #ffd400;
}


.verkoop-menu-button:hover {
    background-color: #f1c802;
    text-decoration: none!important;
}

/* Styling for the range input slider */
input[type="range"] {
  -webkit-appearance: none; /* Removes default styling */
  height: 8px;
  border-radius: 5px;
  background: #d3d3d3; /* Light gray background */
  outline: none;
}

/* Styling for the slider thumb (the part you drag) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
 /* background: #4CAF50;  Green color - change this to your preferred color */
 background: #ffd400;
  cursor: pointer;
}

/* Specifieke styling voor alleen de mijn-shop pagina */
.mijn-shop input[type="range"]::-webkit-slider-thumb {
  background: #ffd400;
}

.mijn-shop .sb-titel {
    background-color: #c1dade;
}

.mijn-shop .sb-titel h3 {
    color: #242e30!important;
}


/* For Firefox */
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4CAF50; /* Green color - change this to your preferred color */
  cursor: pointer;
  border: none;
}

/* For Microsoft Edge */
input[type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4CAF50; /* Green color - change this to your preferred color */
  cursor: pointer;
}

/* Styling for the slider track - Firefox */
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #d3d3d3;
  border-radius: 5px;
}

/* Styling for the slider track - Microsoft Edge */
input[type="range"]::-ms-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* CSS styles to add to your stylesheet */
.no-results-container {
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    background-color: #fdfdfb;
    border-radius: 4px;
}

.no-results-message {
    font-size: 18px;
    font-weight: bold;
    color: #e53935;
    margin-bottom: 20px;
}

.search-suggestions h3 {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.search-suggestions ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.search-suggestions li {
    margin-bottom: 5px;
    color: #555;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.suggestion-btn {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e0e0e0;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.suggestion-btn:hover {
    background-color: #d0d0d0;
    text-decoration: none;
}


.sellect-serie {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.set-code img {
    height: 12px;
    width: auto;
}

.breadcrumbs {
    border: solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fdfdfb;
}

.verkoop {
    border: solid #c1dade;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

.verkopen {
    color: #242e30;
    background: #c1dade;
    padding: 10px;
    font-weight: 300;
}

.koop, .acc, .bc {
    border: solid #555;
    padding-top: 10px;
    padding-bottom: 10px;

    
}

.kopen, .account, .berichtencentrum {
    background: #555;
    padding: 10px;
    font-weight: 300;
    color: #fdfdfb;
}

.sell-your-own {
    text-align: center;
    margin-top: 40px;
}

.mijn-shop .flag-link.active, 
.mijn-shop .flag-link:hover {
    border-color: #c1dade;
}


.menu-block {

    border-radius: 4px;
    overflow: hidden;
    background-color: #fdfdfb;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    background-color: #fdfdfb;
    border-radius: 4px;
    padding-bottom: 20px;
           }

    
  .sb-titel {
  background-color: #555;
  margin: 0;
  padding: 0;
  width: 100%;
        }

.sb-verkoop {
  background-color: #c1dade; /* Pokémon blauw */
}

.sb-titel h3 {
    color: #fdfdfb;
    margin: 0;
     padding: 12px 15px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
        }

.sb-verkoop h3 {
    color: #242e30;
}
        /* Lijst stijl - niet edge to edge, geen achtergrond */
        .menu-block ul {
            list-style-type: none;
            padding: 10px 15px;
            margin: 0;
        }

        .menu-block li {
            margin-bottom: 10px;
        }

        .menu-block li:last-child {
            margin-bottom: 0;
        }

        .menu-block a {
            text-decoration: none;
            color: #333;
            display: block;
            transition: color 0.3s;
        }

.menu-block a:hover {
    text-decoration: underline;
}


.menu-block label {
        padding-left: 10px;
}


.sb-buttons {
    padding: 15px;

}


        .not-found-container {
            text-align: center;
            padding: 20px;
            margin: 0 auto;
        }
        
        .not-found-title {
            font-size: 140px;
            color: #ffc400;
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.2;
        }
        
        .not-found-subtitle {
            font-size: 28px;
            color: #888;
            margin-bottom: 30px;
        }
        
        .not-found-text {
            font-size: 18px;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.5;
        }
        
        .featured-section {
            margin-top: 60px;
            padding-top: 30px;
        }
        
        .section-title {
            color: #888;
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }

.landvlag {
    display: flex; 
    align-items: center;
}

.terug {
    margin:20px;
}

.terug a {
    display: inline;
}


.buttons-ms {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.msbutton {
  display: inline-block;
  padding: 8px 16px;
  background-color: #555;
  color: #fdfdfb;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.msbutton:hover {
  background-color: #333;
}

.msbutton:active {
  background-color: #d0d0d0;
  transform: translateY(1px);
}

.meer {
    text-align: center;
}

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .contact-form form {
            display: flex;
            flex-direction: column;
        }
        
        .contact-form label {
            margin-top: 10px;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .contact-form input, 
        .contact-form textarea {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            border: 1px solid #c3e6cb;
        }
        
        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            border: 1px solid #f5c6cb;
        }
        
        .login-notice {
            background-color: #fff3cd;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            border: 1px solid #ffeeba;
        }
        
        .contact-item {
            margin-bottom: 15px;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #4CAF50;
        }

.icon-link svg {
    transition: stroke 0.3s ease;
}

.icon-link:hover svg {
    stroke: #888888; /* Grijze kleur voor de lijnen bij hover */
}

/* Specifiek voor de logout SVG (die fill gebruikt) */
.icon-link svg path {
    transition: fill 0.3s ease;
}

.icon-link-exit:hover svg path {
    fill: #888888; /* Grijze kleur voor de filled paths bij hover */
}


.message-subject .unread-badge {
    display: none;
}


.account-info {
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#single_option_container, #custom_price_container {
    padding: 0.5rem;
    border: 1px dashed #d1d5db;
    background-color: #f9fafb;
    width: 50%;
    font-size: 12px;
    color: #374151;
}


.extratext {
    margin-top: 10px;
    padding: 0.5rem;
    font-style: italic;
    color: #374151;
}


img.img-engels, img.img-duits {
    height: auto;
    width: 25px;
}

img.img-nederlands {
    height: 16px;
}

img.img-japans {
    height: 14px;
}

img.img-topps {
    height: 20px;
}

/* Status styling */
.status {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
}

.status.te-koop {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status.pauze {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status.verkocht {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status.gereserveerd {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.status.unknown {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}


/* Clone button styling */
.clone-button {
    background-color: #555;
    text-decoration: none;
    color: #fdfdfb!important;
}

.clone-button:hover {
    text-decoration: none!important;
    background-color: #333;
}

.clone-button.loading {
    background-color: #6c757d !important;
    cursor: not-allowed;
    pointer-events: none;
}

.clone-button.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #fdfdfb;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes button-loading-spinner {
    from {
        transform: translate(-50%, -50%) rotate(0turn);
    }
    to {
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

/* Custom Clone Confirm Modal */
.clone-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.clone-confirm-overlay.show {
    opacity: 1;
    visibility: visible;
}

.clone-confirm-modal {
    background: #fdfdfb;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.clone-confirm-overlay.show .clone-confirm-modal {
    transform: scale(1);
}

.clone-confirm-header {
    text-align: center;
    margin-bottom: 20px;
}

.clone-confirm-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: #ffc400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clone-confirm-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.clone-confirm-message {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.clone-confirm-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.clone-confirm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 80px;
}

.clone-confirm-btn-confirm {
    background-color: #ffc400;
    color: #000;
}

.clone-confirm-btn-confirm:hover {
    background-color: #f1c802;
}

.clone-confirm-btn-cancel {
    background-color: rgb(245, 245, 245);
    color: rgb(51, 51, 51);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    padding: 8px 16px;
}

.clone-confirm-btn-cancel:hover {
    background-color: #e5e5e5;
}

/* Notificatie styling */
.clone-notify {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    max-width: 300px;
}

.clone-notify.success {
    background-color: #4CAF50;
    color: #fdfdfb;
}

.clone-notify.error {
    background-color: #e53935;
    color: #fdfdfb;
}

.clone-notify.show {
    opacity: 1;
    transform: translateY(0);
}

.subheader .subcontainer {
    display: flex;
    justify-content: center;
}


/* Sticky header - alleen hoofdheader */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optioneel: schaduw voor diepte */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.faq-item {
    display: flex;
    height: 100%;
}

.faq-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfb;
}

.faq-content h3 {
    min-height: 60px; /* Vaste hoogte voor alle titels */
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0; /* Voorkomt dat de titel kleiner wordt */
}

.faq-content p {
    flex-grow: 1; /* Laat de paragraaf de resterende ruimte vullen */
    line-height: 1.5;
    color: #666;
    margin: 0; /* Reset margin voor consistentie */
}