body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    position: relative; /* Butonun pozisyonu için gerekli */

}

.card {
    border: none;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 20px;
    margin-top: 40px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.list-unstyled li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #6c757d;
}

.shadow-lg {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rounded-3 {
    border-radius: 15px;
}

.card-img-top {
    width: 50%;
}


/* Ana Sayfaya Dön Butonu Stili */
.btn-ana-sayfa {
    position: fixed; /* Sayfada sabit kalması için */
    top: 20px; /* Üstten boşluk */
    left: 20px; /* Soldan boşluk */
    z-index: 1000; /* Diğer içeriklerin üzerinde olması için */
    padding: 10px 20px; /* Butonun iç boşluğu */
    font-size: 1rem; /* Yazı boyutu */
    border-radius: 25px; /* Yuvarlak köşeler */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    transition: background-color 0.3s ease; /* Renk geçiş efekti */
}

.btn-ana-sayfa:hover {
    background-color: #31cf22; /* Hover durumunda renk değişimi */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Hover durumunda gölge artışı */
}

