/* Genel ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Gövde (background ve temel layout) */
body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    padding: 20px;
}

/* Başlık */
h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* İleri butonlar ve form elemanları */
button, select {
    font-size: 16px;
    padding: 12px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, select:hover {
    background-color: #0056b3;
}

select {
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Sonuç kutuları */
#kpss-sonuc, #kpss-tercihler {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Sonuç elemanları */
#kpss-sonuc div, #kpss-tercihler div {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

#kpss-sonuc div:hover, #kpss-tercihler div:hover {
    background-color: #f0f0f0;
}

/* Tercih ekle butonu */
button.ekle {
    background-color: #28a745;
}

button.ekle:hover {
    background-color: #218838;
}

/* PDF İndir bağlantısı */
a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #218838;
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    h3 {
        font-size: 20px;
    }

    select, button {
        width: 100%;
    }

    #kpss-sonuc, #kpss-tercihler {
        padding: 10px;
    }

    #kpss-sonuc div, #kpss-tercihler div {
        padding: 8px;
        font-size: 14px;
    }
}
