.fci-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.fci-icon {
    background: #007bff;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.fci-icon:hover {
    background: #0056b3;
}

.fci-form {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 20px;
    width: 280px;
}

.fci-form.fci-show {
    display: block;
}

.fci-form h4 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.fci-form input,
.fci-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.fci-form input[type="submit"] {
    background: #28a745;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.fci-form input[type="submit"]:hover {
    background: #218838;
}
