* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    
    
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}



.container {
    display: flex;
    align-items: center;
}

.left-menu {
    width: 250px;
    background-color: #E36C0A;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    overflow-y: auto; /* Enable vertical scrolling */ 
    
}

.main-link {
    font-size: 24px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.left-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 20px;
}

.left-menu li {
    padding: 10px;
}

/* Set text alignment to left for all menu items except "Materiály na štúdium" */
.left-menu ul li a {
    color: #fff;
    text-decoration: none;
    text-align: left;
}

/* Style the submenu */
.left-menu .sub-menu {
    display: none;
    padding-left: 20px; /* Add left padding to indent submenu items */
    overflow-y: auto; /* Enable vertical scrolling for submenu */
    max-height: 60vh; /* Set a maximum height for the submenu */
}

/* Style the submenu items */
.left-menu .sub-menu li {
    padding: 5px;
}

.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    width: calc(100% - 250px);
    height: 100vh;
}

/* Remove margin for h1 and p elements within the content area */
.content h1,
.content p {
    margin: 0;
    overflow-y: auto;
}

.h1-custom {
    color: orange;
    text-shadow: 2px 2px 2px #000;
    margin-top: 300px;
}

/* Add spacing after H2 and H3 */
h2 {
    margin-bottom: 30px; /* Adjust as needed */
}

.blank-row {
    height: 10px; /* Adjust as needed */
}

.content {
    overflow-y: auto;
}



