/* CSS komt hier */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Vragen-secties standaard verborgen */
.question-section {
    display: none;
}

/* Zichtbaar als class .visible wordt toegevoegd (optioneel) */
.question-section.visible {
    display: block;
}

.question-section.vraag-richt-aandeelhouder {
  display: block !important;
}

/* Voor handmatige verberging, maar zonder !important */
.hidden {
    display: none;
}


#save-status {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  display: none;
}

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

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


/* ===== NOTRS Saved Forms Styling ===== */

/* Container */
.notrs-saved-forms {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* Item card */
.notrs-saved-forms__item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-row-gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Datum */
.notrs-saved-forms__date {
  font-size: 0.875rem;
  color: #718096;
}

/* BV-naam */
.notrs-saved-forms__bv {
  font-weight: 500;
  color: #2d3748;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Verder gaan-knop */
.notrs-saved-forms__action {
  justify-self: end;
  background-color: #2b6cb0;
  color: #ffffff!important;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s;
}

.notrs-saved-forms__action:hover,
.notrs-saved-forms__action:focus {
  background-color: #2c5282;
  transform: translateY(-1px);
  outline: none;
}

/* Status-label (indien je die gebruikt) */
.notrs-saved-forms_status {
  font-weight: bold;
  color: #2c7;
}

/* “Start nieuwe aanvraag” knop */
.notrs-saved-forms__new {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.notrs-saved-forms__new .button {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s;
}

.notrs-saved-forms__new .button:hover,
.notrs-saved-forms__new .button:focus {
  background-color: #1e7e34;
  transform: translateY(-1px);
  outline: none;
}

/* Toast melding */
.notrs-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4CAF50;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9999;
  pointer-events: none;
}

.notrs-toast.show {
  opacity: 1;
}

/* Save-progress knop */
#saveProgressBtn {
  display: inline-block;
  background-color: #28a745 !important;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 1rem;
}

#saveProgressBtn:hover,
#saveProgressBtn:focus {
  background-color: #0f766e;
  transform: translateY(-1px);
  outline: none;
}

/* Algemene form-buttons */
.form__button {
  display: inline-block;
  background-color: #ffffff !important;
  color: #202020 !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.375rem !important;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.form__button:hover,
.form__button:focus {
  background-color: #0f766e;
  transform: translateY(-1px);
  outline: none;
}

.form__button--secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.form__button--secondary:hover,
.form__button--secondary:focus {
  background-color: #e5e7eb;
  outline: none;
}

.tarief del {
    color: #999;
    margin-right: 0.5em;
}
/* Plaats de logout-knop rechtsboven */
.form__logout {
    position: absolute!important;
    top: 20px;
    right: 20px;
}
.error-border {
    border: 2px solid #dc3545 !important;
}
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}
.hidden {
    display: none !important;
}
.container {
    display: flex;
    flex-wrap: nowrap;
/* Zorgt ervoor dat de inhoud goed schaalt op kleinere schermen */
    max-width: 1000px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}
.form-group.full.checkbox-wrapper {
  margin-top: 15px;
}

.form-group.full.checkbox-wrapper input[type="checkbox"].styled-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #007BFF;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  background-color: white;
  margin-right: 10px;
  vertical-align: middle;
}

.form-group.full.checkbox-wrapper input[type="checkbox"].styled-checkbox:checked {
  background-color: #007BFF;
}

.form-group.full.checkbox-wrapper input[type="checkbox"].styled-checkbox:checked::after {
  content: '✔';
  font-size: 18px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-group.full.checkbox-wrapper .checkbox-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.4;
}
 /* Tabs */
.tabs {
    min-width:250px;
    display: flex;
    flex-direction: column;
    border-right: 2px solid #ddd;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px 0 0 8px;
}
/* Betere stijl voor tab-knoppen */
.tab-button {
    padding: 15px 20px;
    background: white;
    border: 1px solid #ccc;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.tab-button:hover {
    background: #e9ecef;
    color: #007BFF;
    border-color: #007BFF;
}

 /* Actieve tab-knop */
.tab-button.active {
    background: #007BFF;
    color: white;
    border: 1px solid #007BFF;
    box-shadow: 0px 4px 6px rgba(0, 123, 255, 0.3);
    transform: scale(1.05);
}

        /* Betere responsiviteit van content */
.content {
    flex-grow: 1;
    padding-left: 20px;
    min-width: 0;
}

        /* Tabs op volledige breedte */
/* Zorgt ervoor dat tabs zich volledig uitrekken in de container */
.tab {
    display: none;
    flex-grow: 1; /* Zorgt ervoor dat het altijd de beschikbare ruimte opvult */
}

/* Actieve tab zichtbaar maken */
.tab.active {
    display: flex;
    flex-direction: column;
    width: 100%;
}



        /* Formulier styling */
        
        .input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    margin-top: 5px;
}


/* ✅ Input velden */
.input-field {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

/* ✅ Input focus */
.input-field:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

/* ✅ Formulier rij-indeling */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

/* ✅ Algemene styling voor formuliervelden */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group.quarter {
    flex: 1 1 22%;
}
/* ✅ Label styling */
.form-group label {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}
/* ✅ Invoervelden */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
/* ✅ Focus effecten */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.4);
    outline: none;
}
/* ✅ Select dropdown styling */
.form-group select {
    cursor: pointer;
}

/* ✅ Styling voor textarea */
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ✅ Brede velden (bijv. e-mail en straat) */
.full {
    width: 100%;
}

/* ✅ Velden in twee kolommen */
.half {
    width: calc(50% - 10px);
}

/* ✅ Velden in drie kolommen */
.third {
    width: calc(33.33% - 10px);
}
/* ✅ Labels hebben subtiele hover */
.form-label:hover {
    color: #007BFF;
}

        
        form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 15px;
            padding-left: 5%;
        }

        label {
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-top: 5px;
            font-size: 14px;
        }

        .tooltip-container {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tooltip-icon {
            cursor: help;
            font-size: 16px;
            color: #007BFF;
        }

        .button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 10px 0;
}

/* ✅ Algemene knop-styling */
.button-container button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
/* ✅ Vorige knop (grijze stijl) */
#prevBtn {
    background: #ccc;
    color: #333;
}

#prevBtn:hover {
    background: #bbb;
}

/* ✅ Volgende knop (blauwe stijl) */
#nextBtn {
    background: #007BFF;
    color: white;
}

#nextBtn:hover {
    background: #0056b3;
}


/* ✅ Stijling voor de "+ Aandeelhouder" knop */
#add-aandeelhouder-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 1; /* Standaard zichtbaar */
}

/* ✅ Hover-effect voor een interactief uiterlijk */
#add-aandeelhouder-button:hover {
    background: #0056b3;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.4);
}

/* ✅ Gedeactiveerde knop-styling */
#add-aandeelhouder-button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}


.dga-salaris-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

#dga-members-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#dga-members-list li {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

#dga-members-list li .switch {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

#dga-members-list li .tarief {
    font-weight: bold;
    color: #007BFF;
    display: none;
}

#dga-members-list li input[type="checkbox"]:checked ~ .tarief {
    display: block;
}




/* ✅ DGA salarispakket checkbox styling (gelijk aan styled checkboxes) */
#dga_pakket {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Binnen jouw form.css of inline <style> */
.aandeelhouder-block {
    position: relative;
    /* nodig voor absolute positioning binnenin */
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
}

.verwijder-knop {
    
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #3a2f30;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.verwijder-knop:hover {
    transform: scale(1.1);
}

/* Optioneel: stijl het SVG-icoon specifiek */
.verwijder-knop .trash-icon {
    width: 20px;
    height: 20px;
    fill: #272223;
}




/* ✅ Submit knop (groene stijl) */
button[type="submit"] {
    background: #28a745;
    color: white;
    
    
}
button[type="submit"]:hover {
    background: #218838;
}
        .button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

        .btn-primary {
    background: #007BFF;
    color: white;
}


        .btn-primary:hover {
            background: #0056b3;
        }

        .btn-secondary {
            background: #ccc;
            color: black;
        }

        .btn-secondary:hover {
            background: #bbb;
        }
        
     
        
/* ✅ Checkbox styling */
/* ✅ Styling voor #kvk_check checkbox */
#kvk_check {
    width: 24px;
    height: 24px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    appearance: none;
    margin-right: 10px;
    /* Ruimte tussen de checkbox en de tekst */
}

/* ✅ Checkbox wanneer geselecteerd */
#kvk_check:checked {
    background-color: #007BFF;
    border-color: #0056b3;
}

/* ✅ Vinkje in de checkbox */
#kvk_check:checked::after {
    content: "✔";
    color: white;
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
}

/* ✅ Styling voor de tekst naast de checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    padding: 10px;
    background-color: #f9f9f9;
    border: 2px solid #007BFF;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

/* ✅ Hover effect voor de label */
.checkbox-label:hover {
    background-color: #e6f0ff;
}

/* ✅ Tekst naast de checkbox */
.checkbox-label span {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    vertical-align: middle;
}

/* ✅ Versterkt de zichtbaarheid voor de checkbox-groep */
.checkbox-label {
    background-color: #fafafa;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Schaduw voor extra zichtbaarheid */
}

.sbi-code-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.text-small.sbi-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  padding-top:15px;
}


#overigeTab ul{
    
    font-size: 75%;
    
}


/* ✅ Universele checkbox styling op basis van .styled-checkbox */
input[type="checkbox"].styled-checkbox {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid #007BFF;
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  appearance: none;
  margin-right: 10px;
  vertical-align: middle;
}

input[type="checkbox"].styled-checkbox:checked {
  background-color: #007BFF;
}

input[type="checkbox"].styled-checkbox:checked::after {
  content: "✔";
  color: white;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
}


/* ✅ Universele checkbox styling op basis van .styled-checkbox */
input[type="checkbox"] {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 2px solid #007BFF!important;
    border-width:1px!important;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    appearance: none;
    margin-right: 10px;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background-color: #007BFF;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    color: white;
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
}






/* ✅ Styling voor de DGA-leden lijst */
#dga-members-list li {
    margin-bottom: 10px;
}

#dga-members-list .styled-checkbox {
    margin-right: 10px;
}

/* ✅ Verbergen van het DGA-per-aandeelhouder sectie totdat de checkbox is aangevinkt */
#dga-per-aandeelhouder {
    display: none;
}





/* ✅ Vraag-secties */
.question-section {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Label styling */
.question-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}



/* Voeg animatie toe bij tonen */
.question-section.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}


/* Radio-buttons */
.radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}


.radio-label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #007BFF;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    background: white;
    transition: all 0.3s ease-in-out;
}

.radio-group input[type="radio"]:checked + .radio-label::before {
    background-color: #007BFF;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    border: 2px solid #0056b3;
}

/* Hover effect */
.radio-group input[type="radio"]:hover + .radio-label::before {
    border-color: #0056b3;
}

/* Focus effect */
.radio-group input[type="radio"]:focus + .radio-label {
    outline: 2px solid rgba(0, 123, 255, 0.4);
    border-radius: 5px;
}

/* ✅ Zorg ervoor dat de radio-knoppen zelf verborgen zijn */
.radio-group input[type="radio"] {
    display: none;
}

/* Animatie bij tonen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Voeg animatie toe bij tonen */
.question-section.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Specifieke styling voor .radio-group binnen het rechtsvormForm formulier */
#rechtsvormForm .radio-group {
    display: flex;
    flex-wrap: nowrap;
    /* Zorg ervoor dat de knoppen niet op een nieuwe regel terechtkomen */
    gap: 15px;
    /* Ruimte tussen de radio buttons */
    align-items: center;
    /* Zorgt ervoor dat de radio buttons en labels verticaal gecentreerd blijven */
    justify-content: flex-start;
    /* Zorgt ervoor dat ze aan de linkerkant blijven uitgelijnd */
}

/* Specifieke styling voor de labels naast de radio buttons */
#rechtsvormForm .radio-group .radio-label {
    display: inline-flex;
    align-items: center;
    /* Zorgt ervoor dat het label verticaal gecentreerd is ten opzichte van de radio button */
    gap: 8px;
    /* Ruimte tussen de radio button en het label */
    cursor: pointer;
    /* Zorgt ervoor dat het label klikbaar is */
}

/* Specifieke styling voor .radio-group binnen het rechtsvormForm formulier op mobiel */
@media (max-width: 768px) {
    #rechtsvormForm .radio-group {
        flex-direction: row;
        /* Zorgt ervoor dat de knoppen horizontaal blijven */
        flex-wrap: nowrap;
        /* Zorg ervoor dat de knoppen niet op de volgende regel komen */
    }
}



/* Specifieke radio-knoppen styling binnen #rechtsvormForm */
#rechtsvormForm .radio-group .radio-label::before {
    content: none;
    /* Verwijdert het extra pseudo-element */
}

/* Stijlen voor radio-knoppen */
#rechtsvormForm .radio-group input[type="radio"] {
    appearance: none;
    /* Verwijdert de standaard browserstijl */
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #007BFF;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    /* Ruimte tussen de knoppen */
}

/* Gecontroleerde staat van de radiobutton (checked) */
#rechtsvormForm .radio-group input[type="radio"]:checked {
    background-color: #007BFF;
    border-color: #0056b3;
}

/* Het vinkje in de radiobutton wanneer geselecteerd */
#rechtsvormForm .radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Versterkt de zichtbaarheid van de radio label bij hover */
#rechtsvormForm .radio-group .radio-label:hover {
    background-color: #f1f1f1;
}

/* Styling voor het label naast de radio button */
#rechtsvormForm .radio-group .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    min-width: 15%;
}

#rechtsvormForm .radio-group input[type="radio"]:checked+.radio-label {
    color: #007BFF;
    /* Verander de kleur van de tekst wanneer geselecteerd */
}






/* ✅ Modal Styling */


.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-content.large {
  width: 100%;
  max-width: 900px;
}
.modal-content .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  cursor: pointer;
}
   
   /* ✅ Responsiveness: Stijl aanpassen voor mobiele schermen */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Zet tabs en content onder elkaar */
    }

    .tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 0;
    }
    .half, .third {
        width: 100%;
    }
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
      .button-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .button-container button {
        width: 100%;
        text-align: center;
    }
 #add-aandeelhouder-button {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    .tab-button {
        flex: 1;
        text-align: center;
        border-radius: 0;
    }
    
     .checkbox-group-styled {
        flex-direction: column;
        gap: 10px;
    }

    .checkbox-item {
        padding-left: 34px;
        font-size: 15px;
    }
    
    
    .sbi-code-fields {
    flex-direction: row;
    gap: 12px;
  }

  .sbi-code-fields input {
    flex: 1;
  }


.sbi-button-group {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 8px;
}

    .content {
        max-width: 100%; /* Laat de content volledige breedte nemen */
    }
}
