/* Container alignment */
.floating-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Hide class for social icons */
.social-link.hidden {
    display: none;
}

/* Chat Box Styling */
.chat-box {
    display: none; /* Hidden initially */
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 10px;
}

.chat-box.active {
    display: flex;
}

.chat-header {
    background: #2c3e50;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background: #f9f9f9;
    overflow-y: auto;
}

.bot-msg {
    background: #e1e1e1;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
    font-size: 14px;
}

.chat-footer {
    padding: 10px;
    display: flex;
    gap: 5px;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}