/* Button Group Styles - Static at the bottom */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    margin-top: 20px; /* Space above the buttons */
    width: 100%;
}

/* Button Styles */
.btn-icon {
    background-color: #14FFC5; /* Color from SVG */
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-icon:hover {
    background-color: #0fc2a1;
}

.btn-icon i {
    font-size: 1.5rem;
}

/* Special style for "alicia.ai" button */
#popupBtn {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
}
