/* GeoDirectory Velden Shortcode Styling */
.gd-fields-display {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
  }
  
  .gd-field-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
  }
  
  .gd-field-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .gd-field-item .fa {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #bc1b20;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    flex-shrink: 0;
  }
  
  .gd-field-label {
    font-weight: 600;
    margin-right: 15px;
    min-width: 110px;
    max-width: 110px;
    color: #333;
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .gd-field-value {
    flex: 1;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .gd-empty-value {
    color: #999;
    font-style: italic;
    opacity: 0.7;
  }
  
  .gd-field-value a {
    color: #fac500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .gd-field-value a:hover {
    color: #bc1b20;
    text-decoration: underline;
  }
  
  .gd-no-fields {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
  }
  
  /* Styling voor multiselect lijsten (zoals voorzieningen) */
  .gd-multiselect-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .gd-multiselect-list li {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 8px;
    margin: 2px 4px 2px 0;
    border-radius: 12px;
    font-size: 12px;
    color: #555;
    border: 1px solid #e0e0e0;
    width: 100%;
  }
  
  /* Responsive styling voor GeoDirectory velden */
  @media screen and (max-width: 768px) {
    .gd-field-item {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    
    .gd-field-item .fa {
      margin-bottom: 8px;
    }
    
    .gd-field-label {
      min-width: auto;
      margin-right: 0;
      margin-bottom: 5px;
      font-size: 13px;
    }
    
    .gd-field-value {
      font-size: 13px;
    }
    
    .gd-multiselect-list li {
      font-size: 11px;
      padding: 3px 6px;
      margin: 2px 3px 2px 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    .gd-fields-display {
      padding: 15px;
    }
    
    .gd-field-item {
      padding: 10px 0;
    }
  }
  