
/* Genel Stil */
#cilt-tipi-testi {
    max-width: 600px;
    margin: 30px auto;
    font-family: Outfit, sans-serif;
    padding: 20px;
    border-radius: 12px;
    background-color: #3d3d3d;
    color: #ffffff;
}

#error-message {
    color: #d9534f;
    /* Kırmızı ton */
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    display: none;
    /* Başlangıçta gizli */
    background-color: #f8d7da;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
}

.start-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.start-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.ciltTipiBtn,
.next-step {
    background-color: white;
    color: #3D3D3D;
    padding: 10px 20px;
    border: 2px solid #3D3D3D;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s all;
    display: block;
    margin: auto;
}

.ciltTipiBtn:hover,
.next-step:hover{
    background-color: #25a64a;
    color: white !important;
}

.ciltTipiBtn a {
    transition: .3s all;
}

#cilt-tipi-sonuc button#restart-test {
    background-color: transparent;
    border: none;
    color: #ffffff;
    transition: .3s all;
}

#cilt-tipi-sonuc button#restart-test:hover {
    font-weight: bold;
    transform: translateY(-3px);
}

.ciltTipiBtn:hover a {
    color: white;
}

/* İlerleme Çubuğu */
#progress-bar {
    margin: 20px 0;
}

.progress-track {
    width: 100%;
    height: 8px;
    background-color: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-inner {
    width: 0%;
    height: 100%;
    background-color: #0073e6;
    transition: width 0.3s ease;
}

#cilt-tipi-form h4 {
    font-size: 18px;
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.answers {
    margin: 20px 0;
}

.answer-option {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    color: #3d3d3d;
    transition: background-color 0.3s, transform 0.3s;
}

.answer-option:hover {
    background-color: #f1f1f1;
    transform: scale(1.02);
}

.answer-option input {
    margin-right: 10px;
    color: #3d3d3d;
}

.result-title {
    font-size: 20px;
    color: #ffffff;
}

.result-text {
    font-size: 20px;
    color: #3D3D3D;
    font-weight: bold;
}
