li,
ul {
    list-style-type: none;
}

.vrch {
    width: 100%;
    background-color: #666633;
    padding: 1%;
    height: 65px;
    border-bottom: solid black 2px;
}

.btn-moje {
    float: right;
    color: #fff;
    background-color: #669900;
    border-color: black;
    margin-right: 1%;
}

.btn-moje:hover {
    color: #fff;
    background-color: #336600;
    border-color: black;
}

.btn-success_Muj {
    color: #fff;
    background-color: #669900;
    border-color: black
}

.btn-success_Muj:hover {
    color: #fff;
    background-color: #336600;
    border-color: black
}

.container {
    float: left;
}

@media screen and (min-width: 1141px) {
    .menu {
        width: 15%;
        float: left;
    }
     
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
}

li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

li a.active {
    background-color: #4CAF50;
    color: white;
}

li a:hover:not(.active) {
    background-color: #555;
    color: white;
}

li ul li {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 1140px) {

    ul {
        list-style-type: none;
        margin: 0;
        text-align: center;
        width: 100%;
        background-color: #f1f1f1;
    }
}

body {
    font-family: Arial;
    background-color: white;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 80%;
    margin-left: 10%
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 80%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active,
.collapsible:hover {
    background-color: #555;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    width: 80%;
}

.sponsors-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  /* důležité pro vertikální zarovnání menších log */
  gap: 30px;
  background-color: #000;
  padding: 20px;
}

.sponsors-bar img {
  max-height: 60px;     /* Tady omezíš maximální výšku */
  width: auto;          /* Zachová poměr stran */
  height: auto;
  object-fit: contain;
  display: block;       /* odstraní možné mezery pod obrázky */
  transition: transform 0.2s ease;
}

.sponsors-bar a {
  display: flex;              /* důležité pro centrování menších log */
  align-items: center;
  justify-content: center;
  height: 60px;               /* stejné jako max-height obrázku */
}

/* Obal tabulky vycentrovat */
.table-responsive{
  text-align: center;
}

/* Tabulka bude mít šířku podle obsahu a dá se vycentrovat */
#prihlaskyTable{
  display: inline-table;   /* nebo inline-block, ale inline-table je lepší pro table */
  width: auto !important;  /* přepíše bootstrap width:100% */
  max-width: 100%;
  margin: 0 auto;
}

#prihlaskyTable th,
#prihlaskyTable td{
  text-align: left;        /* nebo center – jak chceš */
}