/* Genel sayfa ayarları */
body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
}

.NEVARNEYOK {
    display: flex; /* Yan yana dizilmeyi sağlar */
    width: 100%;
    height: 100vh; /* Sayfa boyu ekran kadar olsun */
}

/* SOL SÜTUN AYARLARI */
.yan-menu {
    width: 15%; /* İSTEDİĞİN %15 ORANI BURASI */
    background-color: oklab(56.641% -0.09854 0.01002); /* Koyu lacivert renk */
    color: white;
    display: flex;
    flex-direction: column; /* Butonları alt alta dizer */
    padding: 20px;
    gap: 15px; /* Butonlar arası boşluk */
}

/* BUTONLARIN BOYUTU VE ŞEKLİ */
.yan-menu button {
    padding: 12px; /* Butonun iç genişliği */
    font-size: 16px; /* Yazı büyüklüğü */
    cursor: pointer; /* Üstüne gelince el işareti çıkar */
    background-color: rgb(62, 175, 139);
    color: white;
    border: none;
    border-radius: 5px; /* Köşeleri biraz yuvarlattık */
    transition: 0.3s; /* Renk değişimi yumuşak olsun */
}

.yan-menu button:hover {
    background-color: oklab(74.30799999999999% -0.06685 0.036); /* Üstüne gelince mavi olur */
}

/* SAĞ İÇERİK ALANI */
.icerik-alani {
    width: 85%; /* İSTEDİĞİN %85 ORANI BURASI */
    background-color: #ecf1f0; /* Açık gri/beyaz arka plan */
    padding: 40px;
}

/* Dropdown Button */
.dropbtn {
  width: 100%;
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
/*.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: hsl(0, 0%, 100%);
  background-color: oklab(74.30799999999999% -0.06685 0.036);
  padding: 12px 12px;
  font-size: 15px;
  text-decoration: none;
  display: block;
  
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color:oklch(80.421% 0.08942 151.294);}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

