html, body {
	font-family: 'Arial';
	margin: 0;
	padding: 00;
	height: 100%;
	width: 100%;
	color: #444;
	background-color: #fafafc;
    padding-bottom: 60px;
}

.header {
	background: #fafafc;
	height: 60px;
}

ul.mainmenu {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 60px;
	color: #000000;
	font-size: 20px;
	margin-left: 230px;
	overflow: hidden;
    border-bottom: 1px solid #eee
}
ul.mainmenu li {
	float: left;
	margin: 18px 40px 0 30px;

}
ul.mainmenu li.logo {margin: 0;}
/*ul.mainmenu li.last {float: right;}*/

ul.mainmenu li a {
	color: #000000;
	text-decoration: none;

}
ul.mainmenu li a:hover {
	background-color: #007bff; /* Цвет фона при наведении */
    color: #fff; /* Цвет текста при наведении */
}

.logo {
	background: url('../images/logo.png') no-repeat 10px 5px;
	width: 70px;
	height: 60px;
}

/*ul.mainmenu li.last {float: right;}*/

.clear {clear: both;}

/* Стилизация контейнера меню */
.menu-container {
    width: 200px;
    height: auto;
    position: fixed;
    top: 70px;
    left: 20px;
    background-color: #fafafc;
    /* box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); */
    /* border-radius: 6px; */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-right: 1px solid #eee
}

/* Стилизация списка */
.vertical-menu {
    margin: 0;
    padding: 20px;
    text-align: center;
    /* border-bottom: 1px solid #eee; */
}

/* Стилизация пунктов меню */
.vertical-menu li a {
     display: flex;
     align-items: center;
     padding: 15px 20px;
     color: #333;
     text-decoration: none;
     transition: background 0.2s ease;
}
/* Убираем маркеры пунктов меню */
.vertical-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Эффект при наведении */
.vertical-menu a:hover {
    background-color: #007bff; /* Цвет фона при наведении */
    color: #fff; /* Цвет текста при наведении */
}

.post-container {
    width: 50vw;
    height: auto;
    position: static;
    padding: 8px;
    top: 15%;
    left: 20%;
    background-color: #FFFFFF;
    text-align: justify;
    /* box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 9px;
}
