/* 
   Voorbeeld-styling 
   Dit is slechts een indicatie; stem het af op de exacte kleuren en font-stacks van de site.
*/

/* Algemene container van de calculator */
.tv-calculator-container, .tv-mail-container {
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
  }
  
  /* Titels */
  .tv-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Form */
  .tv-form {
    display: flex;
    flex-direction: column;
  }
  
  /* Form groepen */
  .tv-field-group {
    margin-bottom: 15px;
  }
  
  /* Labels */
  .tv-field-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
  }
  
  /* Inputs */
  .tv-field-group input[type="date"],
  .tv-field-group input[type="text"],
  .tv-field-group input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  /* Buttons */
  .tv-button {
    background: #0F4C5C; /* donkerblauw/groen */
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .tv-button:hover {
    background: #0d3f4e; /* iets donkerder */
  }
  
  /* Resultaatcontainer */
  .tv-calculator-result {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
  }
  
  /* Field-opsomming */
  .tv-field {
    margin: 5px 0;
  }
  
  /* Total veld */
  .tv-total {
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
  }
  
  /* Fout-/succesberichten */
  .tv-error {
    background-color: #fce4e4;
    color: #d10000;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #d10000;
  }
  
  .tv-success {
    background-color: #e6f4ea;
    color: #1d7f30;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #1d7f30;
  }
  