/* 
 * GREEN TUTORIAL BİLGİ KUTUSU CSS
 * Yeşil tonlar: #228b22, #32cd32, #90ee90, #006400, #98fb98
 */

/* ANA KUTU */
.green-two-column-box {
  width: 728px;
  border: 1px solid #006400; /* Koyu yeşil */
  border-radius: 7px 7px 0 0;
  background: #f0fff0; /* Bal rengi yeşil */
  position: relative;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* ÜST BAŞLIK ŞERİDİ */
.green-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #228b22; /* Orman yeşili */
}

.green-ust-serit-text {
  font-family: Helvetica, sans-serif;
  color: #ffffff; /* Beyaz metin */
  font-size: 24px;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
}

/* İÇERİK ALANI - FLEX DÜZEN */
.green-two-column-box-inner {
  display: flex;
  gap: 10px;
  padding: 5px;
  box-sizing: border-box;
  padding-bottom: 44px;
}

/* SOL SÜTUN (resim) */
.green-col-left img {
  width: 400px;
  height: 225px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #98fb98; /* Açık yeşil border */
}

/* SAĞ SÜTUN */
.green-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* SAĞ SÜTUN BAŞLIĞI */
.green-right-header {
  margin: 0 0 12px 0;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  color: #006400; /* Koyu yeşil başlık */
  font-weight: bold;
}

/* ANAHTAR KAVRAMLAR LİSTESİ */
.green-key-list {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  color: #2e8b57; /* Deniz yeşili metin */
  text-align: left;
  line-height: 1.5;
  margin: 0 0 18px 0;
  padding: 0;
}

.green-key-list div {
  margin-bottom: 5px;
}

/* BUTON GRUBU */
.green-btn-group {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.green-btn {
  display: inline-block;
  padding: 6px 15px;
  font-size: 11px;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff; /* Beyaz metin */
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  transition: all 0.3s;
}

.green-btn.purple {
  background: #228b22; /* Orman yeşili */
}

.green-btn.purple:hover {
  background: #1a6b1a; /* Daha koyu yeşil */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(34, 139, 34, 0.3);
}

.green-btn.red {
  background: #32cd32; /* Parlak yeşil */
  color: #ffffff;
}

.green-btn.red:hover {
  background: #28a428; /* Daha koyu parlak yeşil */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(50, 205, 50, 0.3);
}

/* ALT KAPANIŞ ŞERİDİ */
.green-two-column-box-alt-serit {
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #e0ffe0; /* Çok açık yeşil */
  bottom: 0;
  font-family: Helvetica, sans-serif;
  color: #006400; /* Koyu yeşil metin */
  font-size: 12px;
  text-align: center;
  line-height: 24px;
}