/* =======================================================
   Product Questions Plugin Styles
   ======================================================= */

/* Allgemeines Container Styling */
.product-questions-list,
.product-question-form {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
    background: #fff;
    border-radius: 5px;
}

/* Frage Styling */
.pq-question {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: #fafafa;
}

.pq-question strong {
    color: #333;
}

.pq-question p {
    margin: 5px 0 0 0;
    line-height: 1.4;
}

/* Antwort Styling */
.pq-answer {
    margin-top: 10px;
    padding: 10px;
    border-left: 4px solid #007cba;
    background: #f0f8ff;
    border-radius: 3px;
}

/* Antwortformular */
.pq-answer-form textarea {
    width: 100%;
    height: 60px;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pq-answer-form button,
.product-question-form button {
    background-color: #007cba;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pq-answer-form button:hover,
.product-question-form button:hover {
    background-color: #005f8a;
}

/* Formularfelder */
.product-question-form input[type="text"],
.product-question-form input[type="email"],
.product-question-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .product-questions-list,
    .product-question-form,
    .pq-question,
    .pq-answer {
        padding: 10px;
        margin: 10px 0;
    }
    .pq-answer-form button,
    .product-question-form button {
        width: 100%;
    }
}
