.degerlendirme-kapsayici {
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

.degerlendirme-kapsayici h2 {
    color: #007bff;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* --- Sonuç Görselleştirme Alanı --- */
.sonuc-gorsellestirme h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.genel-puan-kapsayici {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.genel-puan {
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
    margin-right: 15px;
}

.genel-aciklama {
    font-size: 14px;
    color: #666;
}

.puan-bolumu h4 {
    font-size: 16px;
    color: #000;
    margin-top: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-weight: bold;
}

.puanlama-satiri {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.puanlama-satiri label {
    flex-basis: 30%;
    font-size: 14px;
    color: #555;
}

.puan-gosterge {
    flex-basis: 65%;
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    height: 15px;
    border-radius: 3px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background-color: #28a745; /* Yeşil çubuk */
    border-radius: 3px;
    transition: width 0.5s ease-in-out;
}

.puan-deger {
    position: absolute;
    right: -30px; /* Puanı çubuğun dışına hizala */
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}


/* --- Anket Formu Alanı --- */
.anket-formu h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.anket-bolumu h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.puanlama-alani {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.puanlama-alani label {
    flex-basis: 70%;
    font-size: 15px;
}

.puan-secim {
    flex-basis: 25%;
    text-align: right;
}

.puan-secim input[type="number"], .anket-formu textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.puan-secim input[type="number"] {
    width: 120px;
    text-align: center;
}

.anket-formu textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    resize: vertical;
}

#ds-gonder-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#ds-gonder-btn:hover {
    background-color: #0056b3;
}