/* 💬 Chat Button */
#autogemo-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(250, 180, 44, 1); /* Orange */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: background 0.3s ease;
    animation: jumpGlow 2.5s infinite; /* Jump + Glow Effekt */
}

#autogemo-chat-button:hover {
    background: rgba(255, 168, 0, 1); /* dunkleres Orange */
}

/* Jump + Glow Effekt */
@keyframes jumpGlow {
    0% {
        transform: translateY(0) scale(1.3);
        box-shadow: 0 0 0 0 rgba(250, 180, 44, 0.6);
    }
    20% {
        transform: translateY(-6px) scale(1.5);
        box-shadow: 0 0 20px 8px rgba(250, 180, 44, 0.6);
    }
    40% {
        transform: translateY(0) scale(1.3);
        box-shadow: 0 0 5px 2px rgba(250, 180, 44, 0.3);
    }
    60% {
        transform: translateY(-3px) scale(1.3);
        box-shadow: 0 0 15px 6px rgba(250, 180, 44, 0.5);
    }
    100% {
        transform: translateY(0) scale(1.3);
        box-shadow: 0 0 0 0 rgba(250, 180, 44, 0.6);
    }
}

/* 📦 Chat Box */
#autogemo-chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;       /* etwas breiter */
    max-height: 600px;  /* mehr Höhe */
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Header */
#autogemo-chat-box .chat-header {
    background: rgba(250, 180, 44, 1);
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

/* Chat Body */
#autogemo-chat-box .chat-body {
    padding: 10px;
    height: 400px;   /* mehr Platz für Nachrichten */
    overflow-y: auto;
    font-size: 14px;
    color: #333;
}

/* Footer */
#autogemo-chat-box .chat-footer {
    border-top: 1px solid #ddd;
    padding: 10px;
    display: flex;
    gap: 5px;
}

#chat-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#chat-send {
    background: rgba(250, 180, 44, 1);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#chat-send:hover {
    background: rgba(255, 168, 0, 1);
}

/* Buttons für Haupt-Auswahl */
.choice-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: none;
    background: rgba(250, 180, 44, 1);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.choice-btn:hover {
    background: rgba(255, 168, 0, 1);
}

/* Buttons für Unterkategorien & Zeit-Auswahl (inkl. Links) */
.subservice-btn,
.time-btn,
.callback-btn,
a.time-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px 0;
    border: none;
    background: rgba(250, 180, 44, 1);
    color: #fff !important;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.subservice-btn:hover,
.time-btn:hover,
.callback-btn:hover,
a.time-btn:hover {
    background: rgba(255, 168, 0, 1);
}

/* Abbrechen-Button */
.cancel-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px 0;
    border: 1px solid #dc3545;
    background: #fff;
    color: #dc3545;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* Extra Blöcke */
.extra {
    margin-top: 10px;
}
