/* Style for Chat Button with Raiffeisen-inspired Logo */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700; /* Raiffeisen yellow */
    color: #000; /* Black icon */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Icon Styling for Chat Button */
.chat-btn::before {
    content: "⚒"; /* Raiffeisen-style logo icon (crossed hammers) */
    font-size: 32px;
}

/* Chat Popup Window */
.chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-width: 100%;
    border: 1px solid #FFD700;
    background-color: #000;
    color: #FFD700;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    border-radius: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.chat-popup.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Chat Header with Gradient Effect */
.chat-header {
    padding: 12px;
    /* background: linear-gradient(90deg, #FFD700, #FFA000); Gradient for added style */
    background: #FFD700;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
}

/* Chat Body with Modern Scrollbar */
.chat-body {
    padding: 10px;
    height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

.chat-body::-webkit-scrollbar {
    width: 8px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

/* Chat Footer */
.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #FFD700;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    color: #000;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.chat-footer input:focus {
    box-shadow: 0 0 6px #FFD700;
}

.chat-footer button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 8px 16px;
    margin-left: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-footer button:hover {
    background-color: #FFC107;
    transform: scale(1.05);
}

/* Close Button */
.close-btn {
    background: none;
    color: #000;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #FFD700;
}