table td {
  border: none;
}

.news-image {
  display: none;
}

table {
  border: none;
  border-collapse: collapse;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: none;
}

.fixed-width-table {
  width: 100%;
  table-layout: fixed;
}

.fixed-width-table td {
  word-wrap: break-word;
}


/* === HVLD Controleur Form Styling === */

.hvld-form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.hvld-form-wrapper h2 {
  color: #0d3b75;
  /* HVLD blauw */
  margin-bottom: 25px;
  font-size: 28px;
}

.hvld-form-group {
  margin-bottom: 20px;
}

.hvld-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.hvld-form-group input,
.hvld-form-group textarea,
.hvld-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
  background-color: #f9f9f9;
}

.hvld-form-group input:focus,
.hvld-form-group textarea:focus,
.hvld-form-group select:focus {
  border-color: #0d3b75;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 59, 117, 0.15);
}

.hvld-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox styling */
.hvld-checkbox-group {
  margin-bottom: 15px;
}

.hvld-checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hvld-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #e30613;
  /* rood accent */
}

/* Submit button */
.hvld-submit-btn {
  display: inline-block;
  background: #e30613;
  /* HVLD rood */
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hvld-submit-btn:hover {
  background: #b8000f;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.3);
}

/* Two-column layout on desktop */
@media (min-width: 768px) {
  .hvld-row {
    display: flex;
    gap: 20px;
  }

  .hvld-col-50 {
    flex: 1;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .hvld-form-wrapper {
    padding: 20px;
    margin: 20px;
  }
}