.ezze-whabox {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #ffffff;           /* weißer Hintergrund */
    border: 1px solid #ddd;
    border-left: 3px solid #25D366; /* WhatsApp-Grün links etwas dicker */
    border-radius: 1px;
    padding: 12px 14px;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    color: #111;
    text-align: left;
    max-width: 300px;              /* maximale Breite */
    width: 100%;
    box-sizing: border-box;
  }
  
  .ezze-whabox:hover {
    background: #f7f7f7;           /* leichter Hover-Effekt */
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  
  .ezze-whabox__left {
    display: grid;
    place-items: center;
    width: 44px;                   /* mehr Platz fürs größere Icon */
    height: 44px;
    flex: 0 0 44px;
  }
  
  .ezze-whabox__icon {
    width: 40px;                   /* größeres, rundes Icon */
    height: 40px;
    display: block;
  }
  
  .ezze-whabox__content {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  
  .ezze-whabox__title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    color: #0f0f0f;
  }
  
  .ezze-whabox__text {
    font-size: 14px;
    color: #333;
  }
  
  /* Hinweisbox im Admin, falls keine Nummer gesetzt ist */
  .ezze-whabox--notice {
    border: 1px solid #ddd;
    border-left: 6px solid #ffb100;
    background: #fffaf0;
    padding: 10px 12px;
    border-radius: 8px;
  }
  
  /* Optional: zentrieren über Shortcode-Attribut class="ezze-whabox--center" */
  .ezze-whabox--center {
    margin-left: auto;
    margin-right: auto;
  }
  