
.offcanvas {
    background-color: #fff;
}


/* Модальное окно */
#imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Изображение в модальном окне */
#modalImage {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/* Кнопка закрытия */
#closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

#closeModal:hover {
    color: red;
}

.progress {
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
}

.progress-bar {
    background-color: #007bff;
    height: 100%;
    text-align: center;
    color: white;
    white-space: nowrap;
}


/* Стиль для блока сообщений */
.message {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-word;
}

/* Стиль для сообщений отправителя */
.message.sent {
    background-color: #007bff;
    color: white;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

/* Стиль для сообщений получателя */
.message.received {
    background-color: #f1f1f1;
    color: black;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Стиль для цитируемого сообщения */
.message.quoted {
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 5px;
    margin-top: 5px;
}



.accordion-body {
  padding: 0;
}


.offcanvas-bottom {
    min-height: 100% !important;
}

/* календар */
.calendar2-item {
	width: 100%;
	display: inline-block;
	vertical-align: top;
/*	margin: 0 16px 20px; */
	font: 14px/1.2 Arial, sans-serif;
}
.calendar2-head {
	text-align: center;
	padding: 5px;
	font-weight: 700;
	font-size: 14px;
}
.calendar2-item table {
	border-collapse: collapse;
	width: 100%;
}
.calendar2-item th {
	font-size: 12px;
	padding: 6px 7px;
	text-align: center;
	color: #888;
	font-weight: normal;
}
.calendar2-item td {
	font-size: 13px;
	padding: 6px 5px;
	text-align: center;
	border: 1px solid #ddd;
}
.calendar2-item tr th:nth-child(6), .calendar2-item tr th:nth-child(7),
.calendar2-item tr td:nth-child(6), .calendar2-item tr td:nth-child(7)  {
	color: #e65a5a;
}	
.calendar2-day.last {
	color: #999 !important;
}	
.calendar2-day.today {
	font-weight: bold;
}
.calendar2-day.event {
	background: #ffe2ad;
	position: relative;
	cursor: pointer;
}
.calendar2-day.event:hover .calendar2-popup {
	display: block;
}
.calendar2-popup {
	display: none;
	position: absolute;
	top: 40px;
	left: 0;
	min-width: 200px;
	padding: 15px;
	background: #fff;
	text-align: left;
	font-size: 13px;
	z-index: 100;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	color: #000;
}
.calendar2-popup:before {
	content: ""; 
	border: solid transparent;
	position: absolute;    
	left: 8px;    
	bottom: 100%;
	border-bottom-color: #fff;
	border-width: 9px;
	margin-left: 0;
}
/* календар */