body    {
    background-color: #f0f0f0;
}
.web {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7e7878;
}
.weblog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 
    width: 300px;
    height: 300px;
}
.paticka {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #7e7878;
}

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
}
 
.formular1 input[type="submit"] {
    background-color: #647075;
    color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}
.formular1 input[type="submit"]:hover {
    background-color: #5e5e5e;
    border-radius: 10px;
}
.formular1 input[type="text"], .formular1 input[type="password"] ,.formular1 input[type="email"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border-radius: 4px;
}
.chyba {
    color: red;
    font-size: 18px;
    margin-top: 1px;
}

.prihlaseno {
    color: green;
    font-size: 18px;
    margin-top: 1px;
}
.tabulka {
    width: 100%;
    border-collapse: collapse;
}
.tabulka th, .tabulka td {
    border: 1px solid #ddd;
   
}
.tabulka th {
   
    text-align: left;
} 
.tabulkka tr td:nth-child(1) {
    background-color: #f30000;
    color:blue;
} 
.menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #7e7878;
}
  .tlacitko {
    position: absolute;
    right: 0;
    background-color: #647075;
    color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
}
  .tlacitkomenu {
     
      background-color: #647075;
      color: #f0f0f0;
      border: none;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 4px;
      z-index: 10;
  }
  .modal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    left: 50%;
    top: 200px;
    width: 400px; 
    height: 250px; 
    overflow: auto; 
    background-color: #7e7888;
    border-radius: 10px;
    transform: translateX(-50%);
 
    
}
.modal form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
 .modal input[type="text"] { 
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border-radius: 4px;
}
.modal input[type="submit"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #647075;
    color: #f0f0f0;
}
.modal-content {
color:black;
}   
.zvyrazneny {
    background-color: #cde4ae;
    color:rgb(41, 41, 211);
}