/* Chat Widget Styles */
.chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.chat-button:hover {
    background-color: #0056b3;
}

.chat-options {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 10px;
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 70px; /* Position above the chat button */
    right: 0;
    width: 200px;
}

.chat-options.active {
    display: flex; /* Show when active */
}

.chat-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.chat-option-item:hover {
    background-color: #f0f0f0;
}

.chat-option-item a {
    color: #333;
    font-size: 16px;
    flex-grow: 1;
}

.chat-option-item i {
    font-size: 20px;
    color: #007bff; /* Default icon color */
}

/* Specific icon colors */
.chat-option-item .fa-line { color: #00c300; }
.chat-option-item .fa-facebook { color: #3b5998; }
.chat-option-item .fa-phone { color: #28a745; }
.chat-option-item .fa-instagram { color: #C13584; }
.chat-option-item .fa-telegram { color: #0088cc; }
