body {
        background: url('../images/linen.png');
        background-color: #e0e0e0;
    }

h3 {
    text-shadow: 1px 1px 1px black, 0 0 0.2em #777;
    color: blue;
    font-size: 24px;
}

table {
    background-color: #fff;
}

.table-bordered,
.table-bordered>tr>td {
    border-collapse: collapse; //border: 1px solid #33d;
}

td {
    padding-left: 1px;
    font-size: 13px;
    font-family: Verdana;
}

.button-link {
	display: inline-block;
	padding: 5px 20px;
	text-align: center;
	text-decoration: none;
	background-color: #77f; /*#3498db; /* Цвет фона кнопки */
	color: #fff; /* Цвет текста кнопки */
	border-radius: 5px; /* Закругленные углы */
	transition: background-color 0.3s ease; /* Плавное изменение цвета фона при наведении */
	height: 15px;
	font-size: 14px;
}

.button-link:hover {
	background-color: #55f; /*#2980b9; /* Цвет фона при наведении */
}

input.button-link {
	display: inline-block;
	padding: 5px 20px;
	text-align: center;
	text-decoration: none;
	background-color: #77f; /* Цвет фона кнопки */
	color: #fff; /* Цвет текста кнопки */
	border-radius: 5px; /* Закругленные углы */
	transition: background-color 0.3s ease; /* Плавное изменение цвета фона при наведении */
	border: none; /* Убрать бордер */
	height: 25px;
}

input.button-link:hover {
	background-color: #55f; /* Цвет фона при наведении */
}

.thumbnail-cell {
  cursor: pointer;
}

.full-image-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(192, 196, 199, 0.9); /* Цвет фона и коэффициент прозрачности */
  align-items: center;
  justify-content: center;
}

.full-image img {
  max-width: 80%;
  max-height: 80%;
}

#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border: 2px solid #33a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}