/* CSS code for the chatroom */

/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  max-height: 100vh;
  overflow: auto;
}

.container {
  text-align: center;
  margin-top: 50px;
}

.border-box {
  display: inline-block;
  padding: 200px;
  width: 550px;
  height: 500px;
  border: 5px solid #333;
  border-radius: 30px;
  background-color: #333;
}

header {
  background: #333;
  color: #fff;
  padding: 20px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.prijavaLink {
  float: right;
  margin-right: 35px;
}

main {
  padding: 10px;
}

section {
  margin-bottom: 30px;
}

section h1 {
  font-size: 30px;
}

section h2 {
  margin-bottom: 15px;
}

article {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

article h3 {
  margin-bottom: 10px;
}

article p {
  color: #666;
}

article a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  padding-top: 2px;
}

article a:hover {
  color: #000;
  border-color: #000;
}

#najnovejsenovice {
  height: 250px;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #333;
  color: #fff;
  position: absolute;
  bottom: auto;
  width: 100%;
}


/* Random Alignments */

.version2alignment {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.version2alignment li {
  position: relative;
  padding-left: 25px;
  font-size: 1.5em; /* Increase font size */
  margin-bottom: 10px;
}

.version2alignment li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3498db;
  font-size: 1em;
  font-weight: bold;
}
