body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 14px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 420px;
    min-height: 80vh;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    border: 3px solid #f46b23;
    position: relative;
}
p {
    font-size: clamp(12px,2vw,14px);
    line-height: 1.5em;
    margin-bottom: 10px;
}

h1 {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

h2 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: -1px;
    color: #f46b23;
    border-bottom: 1px solid #ddd; 
    padding-bottom: 14px; /* Voeg extra ruimte onder de tekst */
}

form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.menu-toggle.logged-in i.fas.fa-user {
    color: #388E3C; /* groen */
}

input[type="text"], input[type="password"], input[type="email"], [type="submit"] {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    box-sizing: border-box;
    width: 100%;
    transition: box-shadow 0.3s ease;
    /* Lichte schaduw in normale staat */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
}

/* Focus-effect */
input[type="text"]:focus, input[type="submit"]:focus {
    border-color: #f46b23;
    outline: none;
    box-shadow: 0 0 12px rgba(244, 107, 35, 0.8); /* Versterkte focus schaduw */
}

/* Hover-effect voor de knop */
input[type="submit"]:hover {
    background-color: #e36c00;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Versterkte schaduw bij hover */
}

input[type="submit"] {
    background-color: #f46b23;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.result {
    font-size: 14px;
    margin-top: 20px;
}

.specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.specs th, .specs td {
    padding: 10px 12px 10px 5px; /* Meer ruimte rondom de inhoud */
    font-size: 14px;
}

.specs th {
    font-weight: bold;
    color: #f46b23; /* Aandacht voor de koppen */
    text-align: left; /* Koppen links uitlijnen */
    background-color: #f9f9f9; /* Lichtgrijze achtergrond voor de koppen */
}

.specs td {
    color: #444;
    text-align: left; /* Standaard tekst links uitlijnen */
}

.specs td:first-child {
    font-weight: bold;
    width: 150px;
    white-space: nowrap;
    padding-right: 10px; /* Alleen rechter-padding op de eerste kolom */
}

.specs td:last-child {
    text-align: right; /* Rechtex uitlijnen voor cijfers (bijvoorbeeld IMEI) */
}

.search-info {
    font-size: clamp(10px, 2.5vw, 11px);
    color: #999999;
    margin-top: -14px;
    font-style: italic;
}
#loadingText {
    transition: opacity 0.2s ease;
    color: #555555;
}
.explain-text {
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: clamp(10px, 2.5vw, 12px);
    color: #555;
    font-style: italic;
    line-height: 1.5;
    padding-top: 0;                /* verwijder extra top-padding */
    margin-top: -5px;
}
.specs .knox-explain td {
    padding: 0; /* Zorg ervoor dat de padding van de td zelf niet interfereert */
    font-weight: normal;   
}

.specs .explain-text {
    margin:3px 0 0 1px;
    text-align: left; /* Zorgt dat de tekst binnen de uitleg goed uitgelijnd is */
}

.specs .note {
    font-size: clamp(9px, 2vw, 11px);
    color: #555;
    line-height: 1.6;
    margin-bottom: 3px; /* Zorg voor wat ruimte tussen de regels */
}

.specs .note-strong {
    font-weight: bold;
    color: #333;
}
.specs tr.knox-guard td:nth-child(2) { 
    /*KNOX OFF / ON */
    padding-right: 14px; /* Voor wat ruimte aan de rechtkant */
}


/* Cel voor de separator-TR */
.specs tr.knox-separator td {
  padding: 0; /* geen extra padding in de cel zelf */
}

/* De lijn zelf */
.knox-hr {
  border: none;
  border-top: 1px solid #ddd; /* lijnkleur en -dikte */
  margin: 5px 0;             /* 16px witruimte boven én onder de lijn */
  width: 100%;                /* volledige breedte */  
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Optioneel: basis-padding voor de content-rijen */
.specs tr.knox-guard td,
.specs tr.knox-explain td {
  padding: 5px 0 0 5px; /* verticaal wat ruimte rond de tekst */
}



/* Mobiel */
@media (max-width: 600px) {
    .container {
        padding: 15px;        
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #f46b23;
    }

    form {
        flex-direction: column;
    }

    input[type="text"], input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .specs td {
        font-size: 13px;
    }
    .search-info {
        margin-top: -24px; /* Op mobiel iets minder negatieve marge */
    }
}

  #my { 
    color: #e49166;
    font-size: 28px; 
    font-family: "Lucida Console";
    font-weight: 600;
    font-style: italic;
  }
  #sys { 
    color: #ababab;
    font-size: 38px; 
    font-family: "Lucida Console";
    font-weight: 600;
    font-style: italic;
    } 

.uitgebreide-check {
    font-size: clamp(11px, 1.6vw, 12px);
    color: #444;
    background: #fff7f0;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ffa726;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    position: relative;
    width: 100%;
    box-sizing: border-box; /* belangrijk */
    max-width: 100%;        /* voorkomt uitsteken buiten box */
    overflow-wrap: break-word; /* voorkomt rare afbreking tekst */
}


.uitgebreide-check:hover {
    background: #ffe6cc;
    cursor: pointer;
}

.uitgebreide-check .title {
    color: #FF5722;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: clamp(12px, 2vw, 14px);
}

.uitgebreide-check .inner {
    display: flex;
    align-items: center; /* ✅ midden uitlijnen */
    width: 100%;
    gap: 8px;
    flex-wrap: wrap; /* ✅ zorgt dat als te smal → tekst onder checkbox netjes breekt */
}

.uitgebreide-check .description {
    color: #666;
    font-size: clamp(10px, 2vw, 12px);
    line-height: 1.4;
    flex: 1 1 auto; /* ✅ zorgt dat tekst netjes de resterende ruimte pakt */
}

.uitgebreide-check input[type="checkbox"] {
    transform: scale(1.3);
    vertical-align: middle;
    accent-color: #4CAF50; /* ✅ Groen vinkje wanneer aangevinkt */
    transition: accent-color 0.3s;
}


/* ✅ AANGEVINKT → hele blok lichtgroen en tekst groen */
.uitgebreide-check input[type="checkbox"]:checked ~ .description {
    color: #2e7d32;
}

.uitgebreide-check input[type="checkbox"]:checked ~ .description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e8f5e9;
    border-radius: 6px;
    z-index: -1;
    transition: background 0.3s;
}
.premium-confirmation {
    background-color: #e8f5e9;
    border-left: 4px solid #388e3c;
    padding: 12px 17px;
    font-size: clamp(13px, 2vw, 14px);
    border-radius: 6px;
    width: calc(100% - 40px); /* <-- altijd marge van 20px links en rechts */
    max-width: 500px;         /* <-- nooit breder dan 500px */
    margin: 0 auto;
}


.premium-confirmation p {
    color: #2e7d32;  /* Groene tekstkleur */
    margin: 0;
    font-size: clamp(10px, 2vw, 11px);
}

.premium-confirmation strong {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}
    
/* Account menu rechtsboven in de container */
.account-menu {
    position: relative;  /* Zorg ervoor dat de elementen binnen de container blijven */
    display: flex;
    align-items: center;
    justify-content: flex-end;  /* Zorgt ervoor dat de items aan de rechterkant van de container worden uitgelijnd */
    gap: 8px; /* Ruimte tussen profielicoon en hamburger menu */
    margin: -40px 10px 0 0;
    padding-bottom: 20px;
}
.account-menu i {
    cursor: pointer;
}
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer; /* ALLEEN dit krijgt pointer */
}

/* Profiel icoon als tekst */
.menu-toggle .fa-user {
    font-size: 17px; /* Grootte van het profiel icoon (nu kleiner, net als hamburger) */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f46b23;  /* Kleur van het icoon (poppetje) */
}
.menu-toggle .fa-bars {
    font-size: 20px; /* Grootte van het profiel icoon (nu kleiner, net als hamburger) */
    display: flex;
    align-items: center;
    justify-content: center;    
}


/* Stijlen voor de drie lijnen van het hamburger-menu */
.line {
    width: 22px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}
/* Dropdown menu verborgen standaard */
.dropdown-content {
    display: none;
    position: absolute;
    right: 20px;
    top: 50px;
    background-color: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 15px;
    z-index: 1000;
    width: 230px;
    max-width: 90%;  /* Zorgt ervoor dat het dropdown-menu niet te breed is op kleinere schermen */
}

/* Dropdown lijst */
.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Elke optie in het dropdown-menu */
.dropdown-content li {
    padding: 16px 20px; /* Vergrote padding voor betere klikbaarheid */
    border-bottom: 1px solid #ddd;  /* Dunne lijn tussen de keuzes */
    transition: background-color 0.3s, color 0.3s;  /* Voeg een soepele overgang toe */
}

/* Verwijder de laatste border-bottom */
.dropdown-content li:last-child {
    border-bottom: none;
}

/* Maak de gehele lijst-item (li) klikbaar door de <a> tag te laten vullen */
.dropdown-content li a {
    text-decoration: none;
    color: #333;  /* Kleur van de tekst normaal */
    display: block;  /* Zorg ervoor dat de <a> tag de volledige li-bedekt */
    width: 100%;
    height: 100%;
}

/* Hover effect voor de gehele lijst-item */
.dropdown-content li:hover {
    background-color: #f1f1f1;  /* Lichte achtergrondkleur op hover */
}

.dropdown-content li:hover a {
    color: #f46b23;  /* Verander de kleur van de tekst naar oranje bij hover */
}

/* Responsive styling voor mobiel */
@media (max-width: 600px) {
    .dropdown-content {
        top: 70px;
        width: 87%;
        left: 1%;
    }

    .dropdown-content li {
        padding: 16px 20px;  /* Vergrote padding voor mobiel */
    }

    .dropdown-content li a {
        font-size: 18px;  /* Grotere tekst op mobiel voor betere leesbaarheid */
    }
}
.test-banner {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #f46b23;
  color: white;
  padding: 8px 12px;
  border-radius:8px 8px 0 0 ;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  justify-content: center;
}

/* Optioneel: iets kleiner lettertype op hele kleine schermen */
@media (max-width: 600px) {
  .test-banner {
    font-size: 0.8rem;
    width: 90%;
  }
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-top: -12px;
    margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f46b23;
    cursor: pointer;
}
.zoekresultaten {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 12px;
}

.zoekresultaten thead th {
    background-color: #f9f9f9;
    color: #f46b23;
    text-align: left;
    padding: 8px 10px;
    border-bottom: 2px solid #ddd;
}

.zoekresultaten td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    word-break: break-word;
}
.status-label {
  font-weight: bold;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  min-width: 25px;
  height: 20px; /* optioneel, voor verticale uitlijning */
  text-align: center;
}
.status-green {
  background: #388E3C;
}
.status-red {
  background: #D32F2F;
}
.status-gray {
  background: #757575;
}
.status-orange {
  background: #F57C00;
}

h2, td {
  cursor: pointer;
}
h2:hover, td:hover {
  color: #607D8B !important;
}
#copy-alert {
  position: absolute;
  background: #fff7f0;
  color: #f46b23;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
#copy-alert.show {
  opacity: 1;
  transform: translate(10px, 20px);
}
