.question-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-family: Arial, sans-serif;
}

.question-table th {
    background: #0073aa;
    color: white;
    text-align: left;
    padding: 12px;
    font-size: 1.1em;
}

.question-table td {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 1em;
}

.question-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.question-title {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.question-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 10px;
}

.question-answer {
    font-size: 1.1em;
    color: #336699;
    padding: 10px;
    background-color: #e0f7fa;
    border-left: 3px solid #0099cc;
    margin-bottom: 0;
}

.question-details {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

.question-details div {
    width: 24%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.question-details a {
    color: #0078d7;
    text-decoration: none;
}

.question-details a:hover {
    text-decoration: underline;
}

.question-table tr:nth-child(even) {
    background: #f9f9f9;
}

.question-table tr:hover {
    background: #e0e0e0;
}

.question-details div:first-child {
    color: #0073aa;
}

.question-details div:nth-child(2) {
    color: #ff9800;
}

.question-details div:nth-child(3) {
    color: #4caf50;
}

.question-details div:nth-child(4) {
    color: #9c27b0;
}

@media screen and (max-width: 768px) {
    .question-details {
        flex-wrap: wrap;
        text-align: center;
    }

    .question-details div {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Soru Sorma Formu Stilleri */
.usc-soru-form-container {
    max-width: 600px; /* Formun maksimum genişliği */
    margin: 20px auto; /* Sayfada ortala ve üstten/alttan boşluk bırak */
    padding: 20px;
    background-color: #f8f8f8; /* Arka plan rengi */
    border: 1px solid #ddd; /* Kenarlık */
    border-radius: 5px; /* Köşeleri yuvarla */
    font-family: Arial, sans-serif; /* Yazı tipi */
}

.usc-soru-form-container h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
    text-align: center; /* Başlığı ortala */
}

.usc-soru-form-group {
    margin-bottom: 15px; /* Form grupları arasına boşluk bırak */
}

.usc-soru-form-group label {
    display: block; /* Etiketi blok element yap */
    font-weight: bold; /* Etiketi kalın yap */
    margin-bottom: 5px; /* Etiket ile giriş alanı arasına boşluk bırak */
    color: #555;
}

.usc-soru-form-group input[type="text"],
.usc-soru-form-group textarea {
    width: 100%; /* Giriş alanları tam genişlikte olsun */
    padding: 10px;
    border: 1px solid #ccc; /* Kenarlık */
    border-radius: 4px; /* Köşeleri hafifçe yuvarla */
    box-sizing: border-box; /* Padding ve border genişliğe dahil olsun */
    font-size: 1em; /* Yazı boyutu */
}

.usc-soru-form-group textarea {
    height: 150px; /* Metin alanı yüksekliği */
}

.usc-soru-form-group input[type="submit"] {
    background-color: #007bff; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 10px 20px; /* İç boşluk */
    border: none; /* Kenarlık yok */
    border-radius: 4px; /* Köşeleri yuvarla */
    cursor: pointer; /* Fare üzerine gelince el işareti */
    font-size: 1.1em; /* Yazı boyutu */
}

.usc-soru-form-group input[type="submit"]:hover {
    background-color: #0056b3; /* Fare üzerine gelince arka plan rengini koyulaştır */
}

.usc-soru-form-error {
    color: red; /* Hata mesajı rengi */
    font-size: 0.9em; /* Hata mesajı boyutu */
    margin-top: 5px; /* Hata mesajı ile giriş alanı arasına boşluk bırak */
}

#usc-social-share {
    margin-bottom: 30px !important;
}

#usc-social-share {
    margin: 30px 0 !important;
}

#usc-like-dislike button {
    color: #000 !important;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.usc-soru-form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}

.usc-soru-form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}

