/* Responsive design for mobile */
.modal[hidden] { display: none !important; }
.modal-form {
	background: #fff;
	padding: 1.5rem;
	max-width: 520px;
	width: 95%;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.modal-form label { display: block; margin-bottom: 1rem; }
.modal-form input, .modal-form textarea {
	width: 100%;
	padding: .5rem;
	margin-top: .25rem;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.modal-form .buttons {
	margin-top: 1rem;
	text-align: right;
	gap: .5rem;
	display: flex;
	justify-content: flex-end;
}
.modal-form button {
	padding: .5rem 1rem;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
}
.modal-form button[type="submit"] {
	background: #4CAF50;
	color: white;
	border-color: #45a049;
}


@media (max-width: 700px) {
	.floating-add {
		right: 10px;
		bottom: 60px;
	}
	.floating-add .primary {
		font-size: 1rem;
		padding: 0.5rem;
	}
}
@import url('Home.css');
/* Extra pagina-specifieke stijlen kunnen hier toegevoegd worden */

/* Floating add button positioning so it appears above the fixed footer */
.floating-add {
	position: fixed;
	right: 20px;
	bottom: 100px; /* above footer (footer uses bottom:0) */
	z-index: 1200;
}
.floating-add .primary {
	padding: 0.6rem 1rem;
	background: #DFA811;
	color: #010e58;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
}