/* A tagı stili */
a {
    position: relative;
    color: #444444; /* Koyu gri */
    text-decoration: none;
    transition: color 0.3s ease;
}

a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #28a745; /* Yeşil */
    transition: width 0.3s ease, left 0.3s ease;
}

a:hover {
    color: #28a745; /* Üzerine gelince yeşil */
}

a:hover::after {
    width: 100%;
    left: 0;
}


/* Genel sidebar stilleri */
#sidebar {
    width: 250px;
    transition: width 0.3s;
    background-color: #155724; /* Koyu yeşil tema */
    color: #d4edda;
    overflow-y: auto;
}

#sidebar.collapsed {
    width: 70px;
}

/* Menü öğeleri */
#sidebar .list-group-item {
    background: transparent;
    border: none;
    color: #0b521d;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

#sidebar .list-group-item:hover,
#sidebar .list-group-item:focus {
    background-color: #28a745; /* Açık yeşil hover */
    color: white;
}

/* Menü simgesi */
#sidebar .list-group-item i {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

/* Menü metni daraltıldığında gizlenir */
#sidebar.collapsed .list-group-item span.menu-text {
    display: none;
}

/* Alt menü stilleri */
#sidebar .collapse .list-group-item {
    padding-left: 40px;
    font-size: 0.9rem;
    color: #c3e6cb;
}

#sidebar .collapse .list-group-item:hover,
#sidebar .collapse .list-group-item:focus {
    background-color: #218838;
    color: white;
}

/* Scrollbar stilleri */
#sidebar::-webkit-scrollbar {
    width: 6px;
}

#sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* İçerik alanı */
#content {
    transition: margin-left 0.3s;
    margin-left: 70px;
}

#content.expanded {
    margin-left: 250px;
}

/* Top buton */
#topBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 9999;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
    color: #28a745;
    font-size: 0.9rem;
    cursor: pointer; /* Fare ile etkileşim olduğunu belirtmek için */
}

footer:hover {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
    color: #890606;
    font-size: 0.9rem;
    cursor: pointer; /* Fare ile etkileşim olduğunu belirtmek için */
}

/* Renkler */
  .bg-red-dark {
    background-color: #ae0000 !important;
  }
  .red-dark{
    color: #ae0000 !important;
  }
  .bg-red-dark:hover {
    background-color: #dc0000 !important;
  }
  .bg-yellow-dark {
    background-color: #b7a700 !important;
  }
  .bg-yellow-dark:hover {
    background-color: #d3c700 !important;
  }
  .yellow-dark{
    color: #b7a700 !important;
  }
  .bg-blue-dark {
    background-color: #00216e !important;
  }
  .bg-blue-dark:hover {
    background-color: #006aff !important;
  }
  .blue-dark{
    color: #001f68 !important;
  }
  .blue-normal{
    color: #002f9d !important;
  }
  .bg-green-dark {
    background-color: #007716 !important;
  }
  .bg-green-dark:hover {
    background-color: #00a01d !important;
  }
  .green-dark{
    color: #015d12 !important;
  }
  .green-normal{
    color: #007716 !important;
  }
  .bg-orange-dark {
    background-color: #9c5b00 !important;
  }
  .bg-orange-dark:hover {
    background-color: #be8200 !important;
  }
  .orange-dark{
    color: #9c5b00 !important;
  }
  .white{
    color: #f7f7f7 !important;
  }
  .black{
    color: #000000 !important;
  }
  .grey-dark{
    color: #181818 !important;
  }
  .bg-grey-soft{
    background-color: #f4f4f4 !important;
  }
