/* 
 * UBUNTU TERMINAL TUTORIAL BİLGİ KUTUSU CSS
 * Ubuntu tonları: #300a24 (mor), #77216f, #e95420 (turuncu), #2c001e
 */

/* ANA KUTU */
.ubuntu-terminal-two-column-box {
  width: 728px;
  border: 1px solid #77216f; /* Ubuntu mor */
  border-radius: 7px 7px 0 0;
  background: #2c001e; /* Koyu Ubuntu mor */
  position: relative;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* ÜST BAŞLIK ŞERİDİ */
.ubuntu-terminal-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #300a24; /* Koyu Ubuntu mor */
}

.ubuntu-terminal-ust-serit-text {
  font-family: 'Ubuntu Mono', monospace; /* Ubuntu fontu */
  color: #ffffff; /* Beyaz metin */
  font-size: 24px;
  text-align: center;
  line-height: 48px;
}

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

/* SOL SÜTUN (resim) */
.ubuntu-terminal-col-left img {
  width: 400px;
  height: 225px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #77216f; /* Ubuntu mor border */
}

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

/* SAĞ SÜTUN BAŞLIĞI */
.ubuntu-terminal-right-header {
  margin: 0 0 12px 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  color: #e95420; /* Ubuntu turuncu başlık */
}

/* ANAHTAR KAVRAMLAR LİSTESİ */
.ubuntu-terminal-key-list {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  color: #ffffff; /* Beyaz metin */
  text-align: left;
  line-height: 1.5;
  margin: 0 0 18px 0;
  padding: 0;
}

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

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

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

.ubuntu-terminal-btn.purple {
  background: #77216f; /* Ubuntu mor */
}

.ubuntu-terminal-btn.purple:hover {
  background: #5a1754; /* Daha koyu Ubuntu mor */
  transform: translateY(-2px);
}

.ubuntu-terminal-btn.red {
  background: #e95420; /* Ubuntu turuncu */
}

.ubuntu-terminal-btn.red:hover {
  background: #c34113; /* Daha koyu Ubuntu turuncu */
  transform: translateY(-2px);
}

/* ALT KAPANIŞ ŞERİDİ */
.ubuntu-terminal-two-column-box-alt-serit {
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #300a24; /* Koyu Ubuntu mor */
  bottom: 0;
  font-family: 'Ubuntu Mono', monospace;
  color: #ffffff; /* Beyaz metin */
  font-size: 12px;
  text-align: center;
  line-height: 24px;
}