/* 
 * AQUA TUTORIAL BİLGİ KUTUSU CSS
 * Aqua tonları: #00ffff, #7fffd4, #00ced1, #20b2aa, #5f9ea0
 */

/* ANA KUTU */
.aqua-two-column-box {
  width: 728px;
  border: 1px solid #00ced1; /* Koyu aqua */
  border-radius: 7px 7px 0 0;
  background: #f0ffff; /* Açık aqua (azure) */
  position: relative;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* ÜST BAŞLIK ŞERİDİ */
.aqua-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #00ffff; /* Aqua */
}

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

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

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

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

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

/* ANAHTAR KAVRAMLAR LİSTESİ */
.aqua-key-list {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  color: #006666; /* Koyu aqua metin */
  text-align: left;
  line-height: 1.5;
  margin: 0 0 18px 0;
  padding: 0;
}

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

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

.aqua-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;
}

.aqua-btn.purple {
  background: #008b8b; /* Koyu aqua */
}

.aqua-btn.purple:hover {
  background: #006969; /* Daha koyu aqua */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 139, 139, 0.3);
}

.aqua-btn.red {
  background: #00ced1; /* Orta aqua */
  color: #ffffff;
}

.aqua-btn.red:hover {
  background: #00a9a9; /* Daha koyu orta aqua */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 206, 209, 0.3);
}

/* ALT KAPANIŞ ŞERİDİ */
.aqua-two-column-box-alt-serit {
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #e0ffff; /* Açık aqua */
  bottom: 0;
  font-family: Helvetica, sans-serif;
  color: #008b8b; /* Koyu aqua metin */
  font-size: 12px;
  text-align: center;
  line-height: 24px;
}