
/* horný riadok */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    color: #2C2A75;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 10;
    
}

.logo {
    font-size: 1em;
    font-family: sans-serif;
    font-weight: bold;
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: row; */
    flex:1;
    overflow-wrap: break-word;
    text-align: center;
}


#logo_small_img {
    height: 60px;
}

.menu ul {
    list-style: none;
    font-size: 1em;
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    flex-direction: row;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    color: #2C2A75;
    text-decoration: none;
}


.main_container {
    display: flex;
    
    
    padding: 10px;
    flex-wrap: wrap;
    width:100%;
    height: 40vh;
    flex-direction: column;
    
    background-image: url("doctor-crop-30.png");
    background-repeat: no-repeat;
    background-size: cover;
    
    color: #2C2A75;

    
}

.title_container {
    display: flex;
    
    
    padding: 10px;
    flex-wrap: wrap;
    width:100%;
    flex-direction: column;
    
    /* background-image: url("doctor-crop-30.png");
    background-repeat: no-repeat;
    background-size: cover; */

    background-color: #2d2d75;
    background-size: cover;
    
    color: white;
  
    
}


h1 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    margin-left: 10px;
    margin-top: auto;
      
  
}

.titulok {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    margin: 10px 0;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
    width: 100%;
    padding: 30px;
    margin-top: 0;
    margin:auto;
    

    font-family: sans-serif;
    color: #2C2A75;
    
}

table {
    width: 100%;
    table-layout: fixed;
    border: solid 1px;
    border-collapse: collapse;
  }
  td {
    border: solid 1px;
    padding: 10px;
    text-align: center;
  }

  #cena {
    width: 10%;
  }





.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #2d2d75;
    color: #F5FBEF;
    flex-wrap: wrap;
    flex-direction: row;
    font-family: sans-serif;
    font-weight: bold;
}

.footer_item {
    flex:1;
    overflow-wrap: break-word;
    text-align: center;
    
} 

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    
    .menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu li {
        margin-left: 0;
        margin-top: 10px;
    }

    .logo {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .footer {
        flex-direction: column;
    }

    .footer_item {
        width:100%;
    }
    

}


@media (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .menu ul {
        align-items: flex-start;
    }

    .menu li {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer {
        flex-direction: column;
    }

    .footer_item {
        width:100%;
    }

}