html {
	padding: 5px;
}

body {
	font-family: Inter, Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0px;
}

.pagewrap {
	width: 1024px;
	margin: 0 auto;
	float: left;
}

.footer {
	padding: 20px;
	/*font-size: 30px;*/
	text-align: center;
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar
}

h1 {
	font-weight: bold;
	text-align: left;
	font-size: 40px;
	padding: 0px;
	margin-bottom: 0px;
	color: #424242;
	text-wrap: balance;
}

.subh1 {
	font-size: 25px;
	margin-top: 0;
	padding-top: 0px;
	text-align: left;
}

h2 {
	font-weight: bold;
	/*text-align: center;*/
	font-size: 30px;
	padding-top: 20px;
	margin: 0;
	color: #424242;
	text-wrap: balance;
}

h3 {
	font-weight: normal;
	/*text-align: center;*/
	font-size: 25px;
	padding-top: 20px;
	margin: 0;
	color: #424242;
	text-wrap: balance;
}

li {
	list-style-type: square;
	line-height: 1.5;
	font-size: 17px;
}

.calendar-container {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-around;*/
	margin-top: 10px;
}

.calendar-month {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-gap: 5px;
	width: 300px;
	margin: 10px;
	padding: 10px;
	text-align: center;
	/*border: 2px solid #ccc;*/
	border-radius: 8px;
	justify-content: center;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.calendar-header,
.calendar-day {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: center;
	font-size: 12px;
}

.calendar-header {
	background-color: #f0f0f0;
	font-weight: bold;
}

.calendar-day {
	cursor: pointer;
}

.calendar-day:hover {
	background-color: #e0e0e0;
	/* Light gray on hover */
	transition: background-color 0.3s ease;
}

.highlighted {
	background-color: #ffdd57;
}

.month-label {
	font-weight: bold;
	margin-top: 10px;
	font-size: 18px;
	grid-column: span 7;
}

#endDate {
	margin: 0;
}

#startDate {
	margin: 0;
}

input {
	font-family: Inter, Arial, sans-serif;
	margin-bottom: 0px;
	padding: 4px;
	min-width: 100px;
	font-size: 14px;
	border-radius: 8px;
	outline: none;
}

.date-info {
	margin-top: 20px;
}

.date-info p {
	font-size: 16px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	overflow: hidden;
}

th {
	background-color: #757575;
	color: white;
	text-align: left;
	padding: 12px;
	font-weight: bold;
	/*white-space: nowrap;*/
	height: 25px;
}

th a {
	color: white;
	text-decoration: none;
}

td {
	font-size: 18px;
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

td a {text-decoration: none;}

.green {
	font-weight: bold;
	color: green;
	white-space: nowrap;
}

.red {
	font-weight: bold;
	color: red;
	white-space: nowrap;
}

small {
	font-size: 14px;
	font-weight: normal;
}


tr:nth-child(even) {
	background-color: #f2f2f2;
}

tr:hover {
	background-color: #e9e9e9;
	cursor: default;
}


thead tr {
	border-radius: 8px 8px 0 0;
}

td:first-child {
	font-weight: bold;
	color: #333;
}

.extra-row {
	background-color: #fafafa;
	font-style: italic;
	color: #666;
}

.hidden-row {
	display: none;
 }
 .show-more {
	text-align: center;
	background-color: #f0f0f0;
	cursor: pointer;
 }
 .show-more:hover {
	background-color: #e0e0e0;
 }

.styled-button {
	font-family: Inter, Arial, sans-serif;
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	width: 150px;
	outline: none;
	/* transition: background-color 0.3s, transform 0.1s;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
}

.styled-button:hover {
	background-color: #45a049;
}

.styled-button:active {
	transform: scale(0.98);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.symbolimage {
	width: 50px;
	height: 50px;
}

.coinimgcell {
	text-align: center;
	vertical-align: middle;
	width: 50px;
}

.smalltext {
	padding-bottom: 20px;
	text-align: justify;
	font-size: 10px;
}

.rightalign {
	width: 50%;
	text-align: right;
}

.text {
	font-size: 17px;
}

.maintablefont {
	font-size: 21px;
}

.social {
	padding-top: 10px;
	text-align: center;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
	display: inline-block
}

.resp-sharing-button__link {
	text-decoration: none;
	color: #fff;
	margin: 0.5em
}

.resp-sharing-button {
	border-radius: 5px;
	transition: 25ms ease-out;
	padding: 0.5em 0.75em;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.resp-sharing-button__icon svg {
	width: 1em;
	height: 1em;
	margin-right: 0.4em;
	vertical-align: top
}

.resp-sharing-button--small svg {
	margin: 0;
	vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
	stroke: #fff;
	fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
	fill: #fff;
	stroke: none
}

.resp-sharing-button--twitter {
	background-color: #55acee
}

.resp-sharing-button--twitter:hover {
	background-color: #2795e9
}

.resp-sharing-button--facebook {
	background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
	background-color: #2d4373
}

.resp-sharing-button--facebook {
	background-color: #3b5998;
	border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
	background-color: #2d4373;
	border-color: #2d4373;
}

.resp-sharing-button--twitter {
	background-color: #55acee;
	border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
	background-color: #2795e9;
	border-color: #2795e9;
}
.faq-section {
  max-width: 100%;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.faq-section summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.faq-section p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
  color: #444;
}

.faq-section details {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #fdfdfd;
  transition: background-color 0.4s ease;
}

/* При открытии блока — меняем фон */
.faq-section details[open] {
  background-color: #FFDD57;
}

/* Текст внутри остаётся читабельным */
.faq-section details[open] p,
.faq-section details[open] summary {
  color: rgb(29, 29, 29);
}

.faq-section {
  cursor: pointer;
}
.faq-section details {
  pointer-events: none;
}
.faq-section summary,
.faq-section details > * {
  pointer-events: all;
}
