.contact-dialog-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.5);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 2000;
                animation: fadeIn 0.3s ease-out;
            }
            
            .contact-dialog-content {
                background: white;
                padding: 24px;
                border-radius: 16px;
                width: 90%;
                max-width: 400px;
                box-shadow: 0 6px 12px rgba(0,0,0,0.1);
                text-align: center;
            }
            
            .contact-dialog-content h3 {
                font-size: 1.2rem;
                color: #333;
                margin-bottom: 8px;
            }
            
            .contact-phone {
                color: #666;
                font-size: 1rem;
                margin-bottom: 20px;
                padding: 8px;
                background: #f8f9fa;
                border-radius: 8px;
            }
            
            .contact-options {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                margin-bottom: 20px;
            }
            
            .contact-option {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 12px;
                border: none;
                border-radius: 8px;
                background: #f8f9fa;
                cursor: pointer;
                transition: all 0.2s ease;
            }
            
            .contact-option:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            
            .contact-option .icon {
                font-size: 24px;
                margin-bottom: 6px;
            }
            
            .contact-option span {
                font-size: 0.9rem;
            }
            
            .call { color: #28a745; }
            .whatsapp { color: #25D366; }
            .sms { color: #17a2b8; }
            
            .contact-cancel {
                width: 100%;
                padding: 12px;
                border: none;
                border-radius: 8px;
                background: #f0f0f0;
                color: #666;
                font-size: 1rem;
                cursor: pointer;
                transition: background 0.2s;
            }
            
            .contact-cancel:hover {
                background: #e0e0e0;
            }
             /* Verbesserte CSS-Stile für die Such-Badges */
        .search-badge {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10;
            border: 2px solid white;
        }

        .search-badge.bottom-badge {
            position: static;
            margin-left: 8px;
            display: inline-block;
        }

       
        .link-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 24px 0 24px;
  gap: 4px; 
  flex-wrap: nowrap; 
  max-width: 100%; 
}



.left,
.right {
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap; 
}


.left:hover,
.right:hover {
  text-decoration: underline;
}
        

        