/* Grund-Stil für den Trigger-Button */
.assistant-trigger {
    position: fixed; bottom: 20px; right: 20px; background: #2dce89; color: white;
    padding: 12px 20px; border-radius: 30px; cursor: pointer; z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); font-weight: 600; font-size: 14px;
}

/* Pop-up Container */
.assistant-popup {
    position: fixed; bottom: 80px; right: 20px; width: 320px; background: #fff;
    border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9998; overflow: hidden; transition: all 0.3s ease;
}

.hidden { display: none; }

.popup-header { 
    background: #f4f4f4; padding: 12px 15px; display: flex; 
    justify-content: space-between; align-items: center; border-bottom: 1px solid #eee;
}

.popup-content { padding: 20px; text-align: center; }

/* Grid für die Auswahl-Buttons und Icons */
.options-grid, .icon-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 15px;
}
.icon-grid { grid-template-columns: repeat(3, 1fr); }

.option-btn {
    padding: 10px; border: 1px solid #2dce89; background: #fff;
    color: #2dce89; border-radius: 6px; cursor: pointer; transition: 0.2s;
}
.option-btn:hover { background: #2dce89; color: #fff; }

.service-icon {
    width: 45px; height: 45px; cursor: pointer; transition: transform 0.2s;
    border-radius: 8px; border: 1px solid #eee; padding: 5px;
}
.service-icon:hover { transform: scale(1.1); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

.btn-cta { display: block; margin-top: 15px; background: #2dce89; color: white; padding: 10px; border-radius: 6px; text-decoration: none; font-weight: bold; }
.btn-cta:hover {
    background: #45D455;
    cursor: pointer;
	color: white;
}

.back-btn { margin-top: 20px; background: none; border: none; color: #666; cursor: pointer; text-decoration: underline; font-size: 12px; }