/* Sticky Banner Design */
.muttertag-banner {
    background: linear-gradient(90deg, #ffe6f0, #ffcad4);
    color: #8b1e3f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1055;
  }
  
  /* Modal Style */
  .muttertag-modal-content {
    background: linear-gradient(to bottom right, #fff0f5, #ffe6f0);
    border-radius: 12px;
    border: 1px solid #f9c5d1;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    padding: 10px;
    animation: popIn 0.3s ease-in-out;
  }
  
  .muttertag-btn {
    background-color: #d63384;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
  }
  
  .muttertag-btn:hover {
    background-color: #b82e6e;
    transform: scale(1.05);
  }
  
  /* Animation */
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  