.feedback-form-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    border-radius: 10px;
    padding: 25px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.feedback-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.feedback-form-container.closing {
    animation: fadeOut 0.3s ease forwards;
}

.feedback-form-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.feedback-form label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: white;
}

.feedback-form textarea {
    height: 100px;
    resize: vertical;
}

.feedback-form button {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    width: 100%;
}

.feedback-form button:hover { background-color: #c0392b; }

.close-form {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}

.form-success {
    color: #2ecc71;
    text-align: center;
    margin-top: 10px;
    display: none;
}

@media (max-width: 768px) {
    .feedback-form-container {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .feedback-form-container {
        padding: 20px;
        bottom: 20px;
    }

    .feedback-form-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feedback-form input,
    .feedback-form textarea {
        padding: 8px;
        margin-bottom: 12px;
    }

    .feedback-form button {
        padding: 10px;
    }
}
