/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Inner Header Section */
.inner-header {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}

.inner-header h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.breadcrumb {
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  background-color: transparent;
}

.breadcrumb li {
  display: inline;
  font-size: 14px;
}

.breadcrumb li a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb li.active {
  color: #bdc3c7;
}

.print-link {
  float: right;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.print-link:hover {
  color: #3498db;
}

/* Prastavna (Introduction) Section */
.prastavna {
  padding: 20px;
  margin-bottom: 20px;
}

.prastavna h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.prastavna p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.table th {
  background-color: #3498db;
  color: #fff;
  font-weight: 700;
}

.table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tr:hover {
  background-color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inner-header h3 {
    font-size: 22px;
  }

  .breadcrumb li {
    font-size: 12px;
  }

  .prastavna h4 {
    font-size: 20px;
  }

  .prastavna p {
    font-size: 14px;
  }

  .table th, .table td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .inner-header h3 {
    font-size: 20px;
  }

  .breadcrumb li {
    font-size: 10px;
  }

  .prastavna h4 {
    font-size: 18px;
  }

  .prastavna p {
    font-size: 12px;
  }

  .table th, .table td {
    padding: 6px;
    font-size: 12px;
  }
}