body {
    background-color: #99ffcc;
    font-size: 19px;
    font-family: cursive,"MV Boli","Bauhaus 93",sans-serif;
    cursor: default;
}
h1 {
    font-family: Arial,cursive,"sans-serif";
}
.button {
    font-size: 16px;
    padding: 10px 20px;
    color: #d6f5df;
    background-color: rgb(23, 71, 143);
    border-radius: 12px;
    cursor: pointer;
    border: none;
    cursor: pointer;
}
header {
    background-color: #3cf599;
}
.nastroje {
    float: right;
    border: 2px solid black;
    border-radius: 15px;
    height: 50px;
    cursor:not-allowed;
}
.vyhledat {
display: flex;
  align-items: center;
  justify-content: center; 
}
::selection {
    background-color: rgb(23, 71, 143);
    color: white;
}
input {
    height: 30px;
    width: 155px;
    border: 1px solid rgb(164, 167, 172);
    background-color: rgb(248, 250, 250);
    border-radius: 5px;
}
button {
    height: 35px;
    border: none;
    border-radius: 8px;
    color: white;
    background-color: rgb(23, 71, 143);
    cursor: pointer;
}
/* Základní styly pro desktopovou verzi */
.some-element {
  width: 500px;
  /* další styly pro desktopovou verzi */
}

/* Media query pro telefony (maximální šířka 768px) */
@media screen and (max-width: 768px) {
  /* Žádné specifické styly pro telefony - použije se verze pro počítač */
  .some-element {
    width: 500px; /* Můžete nastavit stejné rozměry jako v desktopových stylech */
  }
}

