html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.touchEnabledButton {
    width: fit-content;
    padding: 2rem;
}

.StepOverview {
    display: flex;
    width: 100%;
    margin-bottom: 0.5rem;
}

form {
    display: grid;
}

input[type=button], input[type=submit], input[type=reset] {
    margin: 4px 2px;
}

/* De volledige kaart */
.option {
    border: 2px solid #0077cc;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden; /* zorgt dat border meewerkt met animatie */
    background: #ffffff;
}

/* Titelbalk */
.option-header {
    background: #e6f2ff; /* zacht blauw, kan donkerder indien gewenst */
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    margin-bottom: 0.25rem;
}

    /* Label in titel */
    .option-header label {
        font-weight: bold;
        cursor: pointer;
    }

/* Paneel met transitie */
.panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px; /* padding wordt geanimeerd via extra wrapper indien gewenst */
    transition: max-height 0.4s ease-out, opacity 0.3s;
    opacity: 0;
}

    /* Uitgevouwen */
    .panel.open {
        max-height: 30rem;
        opacity: 1;
        padding-bottom: 10px;
    }
.AssumptionType {
    margin-right: 0;
    margin-left: auto;
    font-size: small;
    color: gray;
}

.Step {
    flex: 1; /* geeft alle kinderen dezelfde breedte */
    text-align: center;
    padding: 10px 0;
    border: 1px solid #ccc; /* optioneel: enkel om de blokken te zien */
}

    .Step.Incomplete {
        background-color: lightblue;
    }

    .Step.Error {
        background-color: pink;
        color:red;
    }

    .Step.Complete {
        background-color: lightgreen;
    }

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

    .styled-table thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left;
    }
    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
    }

    .styled-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }

        .styled-table tbody tr.active-row {
            font-weight: bold;
            color: #009879;
        }

.slider-grid {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}


.slider-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    height: 95px; /* ✅ DIT bepaalt de lengte */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width:30px;
}

.vertical-slider {
    width: 100px; /* ✅ bepaalt spacing */
    height: 24px;
    transform: rotate(-90deg); /* ✅ enkel rotatie */
    margin: 0;
}

.sku-row.productGroup {
    font-weight: bold;
    background-color: lightcyan;
}

.requirement-font{
    font-size:x-small;
}

.requirements-toggle {
    position: relative;
    padding-right: 3rem;
}

.requirements-toggle::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease-in-out;
}

.requirements-toggle:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-135deg);
}