/******************** Navbar ********************/
* { box-sizing: border-box; margin: 0; padding: 0; }


html, body {
  font-family: system-ui, sans-serif;
  font-size: 16px;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #cfd6dd; /* #eef1f4 */
}

a {
	text-decoration: none;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #555555;
}
::-webkit-scrollbar-thumb {
  background-color: #333333;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #333333;
}


/******************** Neon Text ********************/
.neon-text {
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

/******************** Navbar ********************/
.custom-navbar {
  background: linear-gradient(90deg, #1f2327, #171a1d);
  padding: 10px 0;
  border-bottom: 3px solid #ff0000; 
}

/******************** Logo ********************/
.custom-navbar .navbar-brand {
  color: #f1f5f9;
  font-size: 20px;
}

.custom-navbar .navbar-brand:hover {
  color: #ffffff;
}

/******************** Navbar Links ********************/
.custom-navbar .nav-link {
  color: #cbd5e1;
  font-weight: 500;
  margin-left: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 
    color 0.25s ease,
    background-color 0.25s ease;
}

.custom-navbar .nav-link:hover {
  color: #ffffff;
  background-color: #23272b;
}

.custom-navbar .nav-link.active {
  color: #ffffff;
  background-color: #2f3439;
}

/******************** Navbar Dropdown ********************/
.custom-navbar .dropdown-menu {
  background-color: #1b1f23; /* navbar ile daha uyumlu */
  border: 1px solid #2f3439;
  border-radius: 8px;
  padding: 6px 0;
}

.custom-navbar .dropdown-item {
  color: #cbd5e1;
  padding: 8px 14px;
  transition: 
    color 0.25s ease,
    background-color 0.25s ease;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus {
  color: #ffffff;
  background-color: #23272b;
}

.custom-navbar .dropdown-item.active {
  background-color: #2f3439;
  color: #ffffff;
}

/******************** Navbar Toggle Button ********************/
.custom-navbar .navbar-toggler {
  border: none;
  padding: 6px 10px;
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* Hamburger icon rengi */
.custom-navbar .navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(86%) sepia(7%) saturate(300%) hue-rotate(180deg);
  transition: filter 0.25s ease;
}

/* Hover efekti (linklerle uyumlu) */
.custom-navbar .navbar-toggler:hover .navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}


/******************** Menu Cards ********************/
.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100px;
  width: auto;
  border: 2px solid #212121;
  border-radius: 8px;

  text-decoration: none;
  color: #212121;
  transition: 0.2s ease;
}

.menu-card i {
  font-size: 2.8rem;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.menu-card span {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.menu-card:hover i {
  animation: shake 0.5s 1 alternate; /* sadece icon sallansın */
}

.menu-card:hover {
  background: #212121;
  color: #fff;
  transform: none; /* kart sallanmasın */
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
  100% { transform: rotate(0deg); }
}

/******************** Table Header ********************/
.header-bar {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.header-bar h1 { font-size: 24px; }

.header-actions { margin-left: auto; }

.header-actions button {
  width: 32px;
  height: 32px;
  background: #212529;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 6px;
}

.header-actions button:hover { background: #343a40; }

/******************** Tables ********************/
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 24px;
}

th, td {
  border: 1px solid #dee2e6;
  padding: 8px;
}

thead {
  background: #212529;
  color: #fff;
  text-align: center;
}

tbody tr:nth-child(even) { background: #f1f3f5; }

.col-listen { width: 10%; text-align: center; }
.col-fr { width: 45%; }
.col-tr { width: 45%; }

/* Button Speak */
.btn-speak { cursor: pointer; font-size: 16px; }

/* Verb Color */
.text-green { color: #008F60; font-weight: bold; }

/* Verb Color */
.text-red { color: #DE1010; font-weight: bold; }



/******************** Footer ********************/
footer {
  bottom: 0;
  font-size: 1rem;
  margin-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  text-align: center;
  color: #1b1f23;
  z-index: 1;
}

