body {
/*    background-image: repeating-linear-gradient(135deg, #cccccc, #d5fff8 17px);
    background-size: 15px 15px;
    background-position: bottom;
    background-repeat: repeat;*/
    background: azure;
}
.container {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 100vh;
}
.table{
	border: 1px solid #eee;
	table-layout: fixed;
	margin-bottom: 20px;
	margin: auto;
	font-size: 15px;
	width: 150%;
	word-break: break-all;	
	background-color: lightblue;	
}

.table thead {
  position: sticky;
  top: 0;
  z-index: 101;

}

.table th {
	font-weight: bold;
	padding: 5px;
	background: rgb(76, 118, 215);
	color: #ffffff;
	border: 1px solid #dddddd;
	font-size: 15px;
}
.table th:first-child {
	width: 10%;
}
.table td {
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: right;
}
.table tbody td:first-child {
	font-weight: bold;
	color: #ffffff;
	padding: 5px;
	background: rgb(76, 118, 215);
	border: 1px solid #eee;
	text-align: left;
	width: 10%;
	position: sticky; 
	left: 1px; 
	z-index: 100;
}

.table thead th:first-child {
	font-weight: bold;
	color: #ffffff;
	padding: 5px;
	background: rgb(76, 118, 215);
	border: 1px solid #eee;
	text-align: left;
	width: 10%;
	position: sticky; 
	left: 1px; 
	z-index: 100;
}

.table tbody tr:nth-child(even) td:nth-child(2n+2){
	background: #fff;
}
.table tbody tr:nth-child(even) td:nth-child(2n+3){
	background: #f3f3f3;
}
.table tbody tr:nth-child(odd) td:nth-child(2n+3){
	background: #fff;
}
.table tbody tr:nth-child(odd) td:nth-child(2n+2){
	background: #f3f3f3;
}

.table tbody tr td:first-child {
	font-weight: bold;
}

.table tbody tr td:first-child { 
	position: sticky; 
	left: 1px; 
}

.top1 td { 
  background: rgba(255, 215, 0, 0.6); 
}  
.top2 td { 
  background: rgba(148, 158, 179, 0.6); 
} 
.top3 td { 
  background: rgba(214, 150, 90, 0.6); 
} 




.header {
 font-size: 70px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: #b393d3;
  text-transform: uppercase;
  margin: auto;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 1px #957dad,
             1px 2px 1px #957dad,
             1px 3px 1px #957dad,
             1px 4px 1px #957dad,
             1px 5px 1px #957dad,
             1px 6px 1px #957dad,
             1px 10px 5px rgba(16, 16, 16, 0.5),
             1px 15px 10px rgba(16, 16, 16, 0.4),
             1px 20px 30px rgba(16, 16, 16, 0.3),
             1px 25px 50px rgba(16, 16, 16, 0.2);
}

.headert {
  color: #444444;
  text-transform: uppercase;
  margin: auto;
  margin-bottom: 20px;
  text-align: center;	
}

select {
width: 8%;
padding: 12px 20px;
font-size: 16px;
color: #333;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
appearance: none; 
-webkit-appearance: none; 
-moz-appearance: none; 
}


select:hover {
border-color: #999;
}

select:focus {
outline: none;
border-color: #4a90e2;
box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
h4 {
width: 20%;
font-size: 22px;
color: #333;
}
.toggle {
  width: 10%;
  padding: 12px 20px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #cccccc;
  vertical-align: center;
}

.toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__track {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: #cccccc; /* тусклый цвет, когда выключено */
  border: 1px solid;
  border-color:#ffffff;
  transition: color 0.2s ease;
  position: relative;
  vertical-align: center;

}

.toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 10%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Состояние ВКЛ: яркий цвет */
.toggle__input:checked + .toggle__track {
 color: #333; /* яркий зелёный */
 border-color:#333;

}

.toggle__input:checked + .toggle__track + .toggle__thumb {
  transform: translateX(28px); /* сдвиг ползунка вправо */
}
.diag-cell {
  position: relative;
  padding: 0;
}

.diag-cell::before,
.diag-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid #ccc;
}

/* Верхний треугольник */
.diag-cell::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Нижний треугольник */
.diag-cell::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.text-top,
.text-bottom {
  position: relative;
  z-index: 1;
  padding: 4px 8px;
}

.text-top {
  text-align: left;
  color: rgb(100,100,0);  
  font-weight: bold;

}

.text-top:hover {
  text-decoration: underline;
}

.text-bottom {
  text-align: right;
  color: rgb(50,100,50);  
  font-weight: bold;


}

.img_container {
text-align: right;
}
.mini{
	border: 0px;
	table-layout: fixed;
	margin-bottom: 0px;
	margin: auto;
	font-size: 15px;
	width: 100%;
	color: inherit;	
	background-color: inherit;	
}
.mini td:first-child {
	width: 70%;
}
.name{
    display: table-cell;
    width: 90%;
    align-content: center;
    align-items: center;
    justify-items: center;
}
.name a{
	color: inherit;
}
.left_pointer{
	display:none;
}
.right_pointer{
	display:none;
}
.image{
    display: table-cell;
    align-content: center;
    align-items: center;
    justify-items: center;
}
