body {
   font-family: "Red Hat Display", sans-serif;
   display: flex;
   min-height: 100vh;
   flex-direction: column;
   margin: 0;
}

.menu {
   display: flex;
   justify-content: space-around;
   background-color: rgb(0, 0, 0);
   padding: 10px;
   border-radius: 99px;
}

.polozka-menu {
   font-size: 16px;
   font-weight: medium;
   color: rgb(249, 249, 249);
   text-decoration: none;
   padding: 5px;
   transition: color 0.5s ease;

}

.polozka-menu:hover {
   color: rgb(255, 165, 165);
   text-decoration: underline;

}

.menu-nazev {
   order: -1;
   font-weight: bold;
}


.center {
   display: flex;
   justify-content: center;
}

.container {
   display: flex;
   justify-content: space-around;
   align-items: stretch;
   gap: 20px;
   margin: 20px;
}

.container-item {
   background-color: rgb(249, 214, 214);
   padding: 10px;
   border-radius: 10px;
   width: 50%;
}

.container-item>h2 {
   text-align: center;
}

footer {
   width: 100%;
   background-color: rgb(0, 0, 0);
   color: aliceblue;
}

main {
   flex: 1;
   width: 100%;

}


.table {
   width: 500px;
}

/* buttons */

/* Základní styl tlačítka */
.button {
   background-color: #f9c2bc;
   /* Lososová barva */
   border: none;
   color: rgb(0, 0, 0);
   padding: 15px 32px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   font-size: 16px;
   margin: 4px 2px;
   cursor: pointer;
   border-radius: 12px;
   /* Zaoblené rohy */
   transition: transform 0.5s ease;
   /* Přechod pro animaci */
   font-weight: bold;
}

/* Styl při najetí myší */
.button:hover {
   transform: scale(1.1);
   /* Zvětšení tlačítka */
}

.ikony {

   margin-top: 16px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   size: 24px;

}

.ikona {
   margin: 4px;
}

.ikona img {
   width: 24px;
   height: 24px;
}

img {
   width: 300px;
   height: auto;
   /* zachová poměr stran */
   border-radius: 15px;
   /* Zaoblení všech rohů */
}


/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

table {
    border-collapse: collapse;
    width: 80%;
    max-width: 600px;
    margin: 20px 0;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    background-color: #fff;
}

th, td {
   color:#333;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
   
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:hover {
    background-color: #f1f1f1;
}

thead {
    background-color: #333;
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
