/* Tek ve çift satır renkleri */
table tr:nth-child(odd) {
    background-color: #f0f0f0;
    transition: background-color 0.25s ease;
}

table tr:nth-child(even) {
    background-color: #ffffff;
    transition: background-color 0.25s ease;
}

/* Hover efekti */
table tr:hover {
    background-color: #d0e4ff;
    cursor: pointer;
}



.red {
  display: block;
  width: 120px;
  outline: none !important;
  text-decoration: none !important;
  color: white;
  background-color: red;
  padding : 5px 20px 5px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}
.red:hover {
  background-color: #1447E6;
}

.kabul {
  display: block;
  width: 120px;
  outline: none !important;
  text-decoration: none !important;
  color: white;
  background-color: green;
  padding : 5px 20px 5px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}
.kabul:hover {
  background-color: #1447E6;
}

