
/* Genel sayfa stili */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Gri arka plan */
    color: #333; /* Koyu metin rengi */
    margin: 0;
    padding: 0;
}

/* Başlık stili */
h1 {
    
    .green-border-heading {
        border: 3px solid green; /* Kenarlık yeşil */
        padding: 20px; /* Başlığın etrafında boşluk */
        border-radius: 10px; /* Kenarları yuvarlat */
        background-color: #e6f9e6; /* Hafif yeşil arka plan */
        text-align: center; /* Başlığı ortala */
        font-weight: bold; /* Başlık kalın yazı ile */
    }  
    
    
}

h2, h3 {
    color: #1e90ff; /* Mavi renk */
}

h2 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 15px;
}

h3 {
    font-size: 28px;
    margin-top: 20px;
}

/* Özel vurgulama (highlight) sınıfı */
.highlight {
    color: #ff6347; /* Domates kırmızısı */
    font-weight: bold;
}

/* Motivasyon stilini özelleştirme */
.motivasyon {
    font-size: 18px;
    font-style: italic;
    color: #8e44ad; /* Mor renk */
}

/* Tablo stili */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}
th {
    background-color: #4CAF50;
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #ddd;
}
caption {
    font-size: 24px;
    margin-bottom: 10px;
}
/* Nav (menü) stili */
.nav-pills .nav-link {
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    padding: 10px;
}

.nav-pills .nav-link.active {
    background-color: #0056b3; /* Daha koyu mavi */
}

/* Card bileşenleri */
.card {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #2e8b57; /* Yeşil başlık */
}

.card-text {
    color: #555; /* Daha açık metin rengi */
}

.card img {
    border-radius: 5px;
}

/* Buton stili */
button.btn {
    background-color: #2e8b57; /* Yeşil buton */
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button.btn:hover {
    background-color: #45a049; /* Daha açık yeşil hover efekti */
}

/* iFrame stilini özelleştirme */
iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sayfa içeriği ve hizalamalar */
.container {
    padding: 30px;
}

.row.my-4 {
    margin-bottom: 30px;
}

/* Hover efekti */
.highlight:hover {
    color: #007bff; /* Maviye döner */
    cursor: pointer;
}
/* Aktivite kartlarının genel stilini özelleştirme */
.activity-card {
    position: relative;
    margin-bottom: 20px;
}

/* Görsellerin üstte yer alması için */
.activity-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Yazıların altta görünmesi */
.card-body {
    text-align: center;
}

/* Aktivite başlıkları ve açıklamalar için */
.activity-title {
    font-size: 1.25rem;
    margin-top: 15px;
}

.activity-text {
    font-size: 1rem;
    color: #666;
}

.notification {
    background-color: #000;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    font-size: 20px;
    display: none; /* Başlangıçta gizle */
    z-index: 9999;
}
.close-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 5px;
}
#gizliAlan{
    display:none;
    margin: top 10px;
    font-weight:bold;
}


#backToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: none;
      z-index: 9999;
    }


#myText {
      font-size: 24px;
      color: black;
    }

#myBox {
      width: 200px;
      height: 200px;
      background-color: #3498db;
      margin: 20px auto;
      transition: all 0.3s ease;
    }


.message {
      font-size: 20px;
      margin-top: 20px;
    }


  .stars {
      font-size: 40px;
      color: #d3d3d3; /* Başlangıçta gri renk */
      cursor: pointer;
    }
    .stars.selected {
      color: #f1c40f; /* Seçilen yıldız sarı renkte olacak */
    }
    #ratingValue {
      margin-top: 20px;
      font-size: 20px;
    }  


#goToBottomButton {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 15px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    #goToBottomButton:hover {
      background-color: #0056b3;
    } 

   #animate-box {
      width: 100px;
      height: 100px;
      background-color: #3498db;
      margin-top: 50px;
      position: relative;  /* Kutu pozisyonu için */
    }

     #animate-button {
      padding: 10px 20px;
      background-color: #2ecc71;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 20px;
    }

    #mesajım {
      font-weight: bold; /* Mesajı kalın yapar */
      color: #333; /* Mesajın rengini koyu gri yapar */
    }

    .btn-icon { margin-right: 5px; }


    .warning-icon { margin-right: 8px; }


    .feedback-btn {
  border: 1px solid #bdc3c7;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}
.emoji-reaction { font-size: 1.2em; }
.vote-count { color: #95a5a6; font-size: 0.8em; }
