body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 20px;
	background-color: #009688;
	color: white;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #009688;
	color: white;
	font-size: 16px;
}

h1 {
	font-size: 22px;
	margin: 0;
	flex-grow: 1;
}

.menu-icon {
	font-size: 30px;
	cursor: pointer;
	margin-right: 20px;
}

h2, chartmonth {
    text-decoration: none;
	font-size: 18px;
	color: #009688;
    text-align : center;
}

.drawer {
	height: 100%;
	width: 300px;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background-color: #333;
	overflow-x: hidden;
	padding: 10px 0;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.drawer a {
	padding: 12px 15px;
	text-decoration: none;
	font-size: 13px;
	color: white;
	display: flex;
	align-items: center;
}

.drawer a i {
	margin-right: 15px;
}

.drawer a:hover {
	background-color: #444;
}

.main {
	flex: 1;
	padding: 10px;
	background: #f5f5f5;
	transition: margin-left 0.3s ease;
	position: relative;
	z-index: 1;
}

.overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
	transition: opacity 0.3s ease;
}

.close-icon {
	font-size: 24px;
	color: white;
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
	margin-bottom: 20px;
}

.keyword-section {
	background-color: #f4f4f4;
	/* Light gray background for contrast */
	border-radius: 8px;
	/* Rounded corners for modern look */
	padding: 1px;
	/* Padding for spacing inside the box */
	margin: 1px 0;
	/* Margin for spacing outside the box */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* Subtle shadow for depth */
	text-align: center;
}

.keyword-section h3 {
	color: #009688;
	/* Teal color matching your theme */
	margin-bottom: 1px;
	/* Space below the heading */
}

.keyword-section ul {
	list-style: none;
	/* Removes default list styling */
	padding: 0;
	/* Removes default padding */
	margin: 0;
	/* Removes default margin */
}

.keyword-section li {
	background-color: white;
	/* White background for each item */
	margin-bottom: 5px;
	/* Margin between items */
	padding: 1px;
	/* Padding inside each item */
	border-radius: 5px;
	/* Rounded corners for each item */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	/* Light shadow for each item */
	transition: background-color 0.3s;
	/* Smooth transition for hover effect */
}

.keyword-section li:hover {
	background-color: #e0f2f1;
	/* Light teal background on hover */
}

.news-header {
	color: #009688;
	font-weight: bold;
	margin-bottom: 5px;
	text-align: center;
}

.fast-result {
	color: red;
	font-weight: bold;
	margin-bottom: 3px;
	text-align: center;
}

.current-time {
	color: black;
	font-weight: bold;
	margin-bottom: 3px;
	text-align: center;
}

.results-container {
	align-items: center;
	text-align: center;
	padding: 10px;
	/* Added padding for overall alignment */
}

.game-entry {
	margin-bottom: 5px;
	/* Reduced margin for tighter layout */
}

.game-name {
	color: RED;
	font-size: 20px;
	/* Slightly reduced font size */
	font-weight: bold;
	margin-bottom: 3px;
	/* Reduced margin for tighter layout */
}

.game-time {
	color: black;
	font-size: 12px;
	/* Adjusted for space efficiency */
}

.game-result {
	color: GREEN;
	font-size: 18px;
	/* Slightly reduced font size */
	font-weight: bold;
	margin: 3px 0;
	/* Reduced margin for a compact appearance */
}

.waiting-text,
.result-delay {
	color: orange;
	font-size: 14px;
	/* Reduced font size for consistency */
	font-style: italic;
}

.btn-chart a,
.board-button {
	background-color: #009688;
	color: white;
	padding: 6px 10px;
	/* Slightly reduced padding */
	text-decoration: none;
	border-radius: 4px;
	display: inline-block;
	margin-top: 5px;
	/* Standardized margin top for all buttons */
}


.gamesboard-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f4f4f4;
	padding: 10px;
	/* Reduced padding */
	font-family: 'Roboto', sans-serif;
}

.game-panel {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	/* Reduced padding */
	background-color: #ffffff;
	margin-bottom: 5px;
	/* Reduced margin */
	border: 1px solid #ddd;
}

.game-title {
	color: BROWN;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 1px;
	/* Reduced margin */
}

.bgtime {
	color: blue;
	font-size: 14px;
	font-weight: italic;
	margin-bottom: 1px;
	/* Reduced margin for consistency */
}

.old {
	font-size: 18px;
	font-weight: bold;
	color: red;
}

.new {
	font-size: 20px;
	font-weight: bold;
	color: green;
}

.record-link {
	background-color: #009688;
	color: white;
	padding: 6px 10px;
	/* Slightly reduced padding */
	text-decoration: none;
	border-radius: 4px;
	display: inline-block;
	margin-top: 5px;
	/* Reduced margin */
}

.gameschart {
	width: 100%;
	border-collapse: collapse;
	font-size: 10px;
	/* Maintain smaller font size for compact display */
	font-family: 'Roboto', sans-serif;
}

.gameschart th,
.gameschart td {
	border: 1px solid #ddd;
	padding: 3px;
	/* Reduced padding for a compact display */
	text-align: center;
	width: 15%;
	/* Ensure consistent column width */
	font-weight: 700;
}

.gameschart th {
	background-color: #009688;
	color: white;
}

.card {
  border-radius: 8px; /* Adds rounded corners */
  overflow: hidden; /* Ensures content stays within rounded corners */
}

.card-header {
  font-size: 1.25rem; /* Increases font size */
  font-weight: bold; /* Makes text bold */
}

.card-footer {
  background-color: #f8f9fa; /* Light background for footer */
  font-size: 0.85rem; /* Reduces font size */
}
.card-text {
    color:brown;
    font-weight:bold;
    
}
.phone {
color:green;
    font-weight:bold; 
    font-size:22px;
}
.joinchannel {
         font-size: 18px;
         color: #000000;
         text-align:center;
         }
         .telegram-button {
         display: inline-block;
         padding: 10px 20px;
         color: white;
         background-color: #0088cc;
         text-decoration: none;
         border-radius: 5px;
         font-size: 16px;
         font-weight: bold;
         text-align: center;
         transition: background-color 0.3s;
         }
         .telegram-button:hover {
         background-color: #0077b8;
         }
.game-entry { margin-bottom: 10px; padding: 15px; border: 1px solid #ccc; border-radius: 5px; background-color: #f9f9f9; }
        .game-name { font-size: 22px; color: brown; }
        .game-time { font-size: 12px; color: #555; }
        .game-result { font-size: 20px; color: green; font-weight: bold; }
        .btn-chart { margin-top: 2px; }
        .btn-chart a { padding: 8px 15px; background-color: #0066cc; color: white; text-decoration: none; border-radius: 4px; }