html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #f5f5f5; /* Açıq fon */
}

/* Bar xətti */
.bar {
  background: linear-gradient(to right, #800000, #800000),repeat-x top;
  color: #fff;
  padding: 12px 24px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;  /* Yazıları ortada göstərmək üçün */
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border-bottom: 2px solid #990000;
  border-radius: 0 0 6px 6px;
}

/* Bar linkləri */
.bar a {
  color: #ffd700;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.bar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Hər iki hissəyə aid */
.bar a,
.menu a {
  text-decoration: none;
}

/* Menu panel */
.menu {
  border: 1px solid #d2d2d2;
  background: url(../style/img/main.gif) repeat-x top #FBFBFB;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Menu linkləri */
.menu a {
  color: #0e63b8;
  margin-right: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover zamanı */
.menu a:hover {
  background: #0e63b8;
  color: #fff;
}