body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f9f9f9;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	color: #333;
}

.container {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

h2 {
	color: #333;
	font-size: 24px;
}

p,div {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.info-icon {
	color: #70b3ed;
	cursor: pointer;
	margin-left: 5px;
}

.tooltip {
	visibility: hidden;
	width: 280px;
	background-color: #f9f9f9;
	color: #333;
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
}

.tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #f9f9f9 transparent transparent transparent;
}

.info-icon:hover .tooltip {
	visibility: visible;
}

input, button {
	padding: 12px;
	margin: 8px 0;
	border-radius: 4px;
	border: 1px solid #ccc;
	width: calc(100% - 24px);
	box-sizing: border-box;
}

button {
	background-color: #70b3ed;
	color: white;
	border: none;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #5a8dba;
}

.button-row {
	display: flex;
	justify-content: space-between;
	/* This will align the buttons to each end */
	margin: 8px 0;
	/* Add some vertical spacing */
}

.button-group {
	display: flex;
	gap: 10px;
	/* Adds space between the buttons */
	flex-grow: 1;
	/* Allows the button group to take the available space */
}

.button-group button,
.button-row button {
	flex-grow: 1;
	/* Makes buttons grow to fill their container */
	box-sizing: border-box;
	/* Ensures padding and border are considered in width */
}

.button-group button:last-child {
	margin-right: 0;
	/* Removes the margin for the last button in the group */
}

.button-group button {
	width: 50%;
	/* Each button takes up half the width */
	box-sizing: border-box;
	/* Ensures padding and border are included in the width calculation */
}

.input-row {
	display: flex;
	margin: 8px 0;
	/* Consistent vertical spacing */
}

.input-row input {
	width: 100%;
	/* Input fields take full width of their container */
	box-sizing: border-box;
	/* Ensures padding and border are included in width */
}

    #urlInput {
        transition: border-color 0.5s ease; /* Controls the transition speed */
        border: 2px solid #ccc; /* Default border color */
    }

    #urlInput.highlight {
        border-color: red !important; /* Highlighted color when active, use !important to ensure priority */
    }

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url('fa-solid-900.woff2') format('woff2'),
         url('fa-solid-900.woff') format('woff');
}


.fa, .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-info-circle:before {
    content: "\f05a";
}

.checkbox-row {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    margin-top: 0px;  /* Adds vertical spacing */
    margin: 4px 0; /* Adds vertical spacing */
    width: 100%; /* Ensures the container takes full available width */
}

.checkbox-label {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevents the label text from wrapping */
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px; /* Space between the checkbox and the text */
}

.common-font-style {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #333;
}

.checkbox-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px; /* was 30px – nu iets compacter */
    margin: 4px 0 10px 0;
    flex-wrap: nowrap;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    max-width: 48%; /* voorkomt doorschuiven */
}

.checkbox-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #70b3ed; /* optioneel, past aan bij je knopkleur */
}


