/* Genel container ve grid */
.aviation-dictionary-container {
  background: radial-gradient(circle at 50% 0%, #0b1a2b, #040911 80%);
  min-height: 100vh;
  padding: 40px 20px;
  color: #e8f4ff;
  font-family: "Poppins", sans-serif;
}
/* Gerekli CSS Stilleri */
/* aviation-dictionary.css dosyasına ekleyin */
.aviation-term-card {
    /* Varsayılan yüksekliği belirleyin (Örnek: 150px veya ihtiyacınıza uygun bir değer) */
    min-height: 150px; 
    /* Metin taşmasını gizle (Gerekirse) */
    overflow: hidden; 
    /* Diğer stil kurallarınız */
}
.term-modal-overlay {
    /* Ekranın tamamını kapla */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Hafif karartma */
    display: flex; /* İçeriği ortalamak için */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* En üstte görünmesini sağla */
}

.term-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    text-align: center;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

#modalTermEn {
    /* İngilizce karşılığını büyük göstermek için */
    font-size: 3em;
    color: #0073aa; /* WordPress mavisi */
    margin: 10px 0;
    text-transform: uppercase;
}

#modalTermTr {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 5px;
}

#modalDefinition {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left;
}
.dictionary-header {
  text-align: center;
  margin-bottom: 40px;
}

.dictionary-header h1 {
  font-size: 2rem;
  color: #00aaff;
  text-shadow: 0 0 15px rgba(0, 174, 255, 0.7);
  letter-spacing: 1px;
}

#dictionarySearch {
  width: 90%;
  max-width: 480px;
  padding: 12px 18px;
  border: 2px solid rgba(0, 174, 255, 0.3);
  border-radius: 12px;
  background: rgba(10, 20, 35, 0.7);
  color: #dff6ff;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: inset 0 0 10px rgba(0, 174, 255, 0.1);
}
#dictionarySearch:focus {
  border-color: #00aaff;
  box-shadow: 0 0 15px rgba(0, 174, 255, 0.4);
}

.aviation-dictionary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Kart tasarımı */
.aviation-term-card {
  background: rgba(10, 20, 35, 0.85);
  border: 1px solid rgba(0, 174, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 174, 255, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.aviation-term-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(0, 174, 255, 0.6);
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.35);
}

.aviation-term-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,174,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.aviation-term-card:hover::before {
  opacity: 1;
}

.aviation-term-card h3 {
  color: #00aaff;
  margin-bottom: 8px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.term-category {
  font-size: 0.8rem;
  color: #93b5c6;
  text-transform: uppercase;
  float: right;
}

.aviation-term-card p {
  color: #c8d5e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
}
