﻿.card-title {
    font-size: 2rem;
    font-weight: bold;
}

.question-row {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .question-row label {
        background-color: #1F2024; /* Yeni arka plan rengi */
        /*color: black;*/
        border-radius: 5px;
        padding: 10px;
        /*font-size: 1.1rem;
        font-weight: bold;*/
        display: block;
    }

.answer-row {
    margin-bottom: 10px;
}

/*.rate {
    display: flex;
    align-items: center;
}

    .rate input[type="radio"] {
        display: none;
    }

    .rate label {
        font-size: 1.5rem;
        cursor: pointer;
    }

    .rate input[type="radio"]:checked ~ label {
        color: gold;
    }*/

.form-check-label {
    font-size: 1rem;
}

.form-control, .form-select {
    border-radius: 5px;
}

.btn-black {
    background-color: #03AB99;
    color: white;
    border: none;
    margin: 15px;
    padding: 8px; /*Buton boyutunu büyütmek için padding ekliyoruz */
    /*font-size: 1em; Font boyutunu büyütüyoruz */
    /* display: block; Butonu blok element yaparak genişliğini tam genişlikte yapıyoruz */
    text-align: center; /* Metni ortalıyoruz */
    width: fit-content; /* İçeriğine uygun genişlik ayarlıyoruz */
    margin-left: auto; /* Sol kenardan otomatik mesafe */
    margin-right: auto; /* Sağ kenardan otomatik mesafe */
}

    .btn-black:hover {
        background-color: #1F2024;
        color: white;
    }

.btn-black-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
    border: none;
    margin: 15px;
    padding: 8px; /*Buton boyutunu büyütmek için padding ekliyoruz */
    /*font-size: 1em; Font boyutunu büyütüyoruz */
    /* display: block; Butonu blok element yaparak genişliğini tam genişlikte yapıyoruz */
    text-align: center; /* Metni ortalıyoruz */
    width: fit-content; /* İçeriğine uygun genişlik ayarlıyoruz */
    margin-left: auto; /* Sol kenardan otomatik mesafe */
    margin-right: auto; /* Sağ kenardan otomatik mesafe */
}

    .btn-black-secondary:hover {
        background-color: #1F2024;
        color: white;
    }

.surveyanswerscss {
    color: #3B3B3B;
    padding-left: 10px;
}

.highlight {
    background-color: #F1F5FF;
    transition: 1s;
}

.question-container {
    color: white;
    text-align: left;
    padding-top: 16px;
}

.question-text {
    color: white !important;
    font-weight: normal !important;
    /*font-weight: bold;*/
}

.question-text-column {
    color: black;
    font-weight: bold;
}

.answer-container {
    color: black;
    padding-top: 16px;
    padding-bottom: 16px;
}

.survey-hidden {
    visibility: hidden;
    max-height: 0;
}
/*Rating yıldızları*/
.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}

    .rate:not(:checked) > input {
        position: absolute;
        top: -9999px;
    }

    .rate:not(:checked) > label {
        float: right;
        width: 1em;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 30px;
        color: #ccc;
    }

        .rate:not(:checked) > label:before {
            content: '★ ';
        }

    .rate > input:checked ~ label {
        color: #ffc700;
    }

    .rate:not(:checked) > label:hover,
    .rate:not(:checked) > label:hover ~ label {
        color: #deb217;
    }

    .rate > input:checked + label:hover,
    .rate > input:checked + label:hover ~ label,
    .rate > input:checked ~ label:hover,
    .rate > input:checked ~ label:hover ~ label,
    .rate > label:hover ~ input:checked ~ label {
        color: #c59b08;
    }
