/* CSS Document */

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.navbar {
  height: 60px;
  background-color: #00B3F5;
  display: flex;
  align-items: center;      /* svislé centrování */
  //justify-content: center;  /* vodorovné centrování */
}

.nav-list {
  list-style: none;      /* odstraní tečky */
  display: flex;         /* položky vedle sebe */
  gap: 20px;             /* mezery mezi tlačítky */
  margin: 0;
  margin-left: 20px;
  padding: 0;
}

.nav-list a {
  background-color: #4BABA2;
  text-decoration: none; /* bez podtržení */
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3)
}

/* hover efekt */
.nav-list a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.content {
  flex: 1;
  background: linear-gradient(to bottom, #27788F 0%, #000000 100%);
  padding: 20px;
}

.links-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.links {
  list-style: none;   /* odstraní tečky */
  padding: 0;
  margin: 0;
}

.links li {
  margin: 10px 0;     /* mezera mezi odkazy */
}

.links a {
  display: inline-block;
  background-color: #00B3F5;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  border: 2px solid #00B3F5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* hover efekt */
.links a:hover {
  background-color: #008bbf;
  transform: translateY(-2px);
}