body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: black;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 200px; /* Adjust the width as needed */
  height: auto;
}

.boja_crna {
	color: black;	
}

nav {
  text-align: right; /* Align navigation to the right */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-left: 1rem;
}

nav ul li a {
  color: white; /* Original link color */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

nav ul li a:hover {
  color: black; /* Hover link color */
  background-color: red; /* Hover background color */
}

main {
  background-color: black;
  color: white;
  padding: 1rem;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
}

/* Add styles for the hero section and table */
.hero {
  padding: 2rem;
  background-color: #222;
  color: white;
  text-align: center;
}

.container {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 0.75rem;
  border: 1px solid #ddd;
}

.table th {
  background-color: #333;
  color: white;
}

.table td {
  background-color: #444;
}

@media (max-width: 768px) {
  header {
    padding: 0.5rem;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .logo-container,
  .nav-container {
    width: 100%;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 0.5rem 0;
  }
  
  .table, .table th, .table td {
    display: block;
    width: 100%;
  }

  .table th, .table td {
    box-sizing: border-box;
  }

  .table thead {
    display: none;
  }

  .table tr {
    margin-bottom: 1rem;
  }

  .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 1rem;
    text-align: left;
    font-weight: bold;
  }
}
