body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background: #f0f0f0;
	padding-top: 10px;
}

/* Header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 10px 30px;
	margin-bottom: 30px;
}
.header img { height: auto; }
.header .menu a {
  margin-left: 20px;
  color: #4D186D;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.header .menu a:hover { color: #8f4597; }

/* Second logo center */
.logo2 { text-align: center; margin: 10px 0; }
.logo2 img { height: 150px; }

/* Search */
.search-container { margin-top: 10px; text-align: center; }
.search-box {
  display: inline-flex;
  align-items: center;
  border: 2px solid #4D186D;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.search-input {
  width: 500px;
  max-width: 90%;
  height: 60px;
  padding: 0 20px;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 40px 0 0 40px;
}
.btnSearch {
  height: 60px;
  width: 60px;
  background-color: #4D186D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.btnSearch:hover { background-color: #8f4597; }
.search-icon { width: 34px; height: 34px; }

/* Suggestion Table */
.suggestion-table {
  margin: 7px auto;
  border-collapse: separate;
  border-spacing: 4px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.suggestion-table td {
  padding: 6px 10px;
  cursor: pointer;
}
.suggestion-table td a {
  color: #fff;
  text-decoration: none;
}
.suggestion-table td:hover { opacity: 0.8; }
/* Suggestion Table Wrapper */
.suggestion-wrapper {
  margin: 7px auto;
  width: 580px;
  border-radius: 12px;
  overflow: hidden; /* ensures rounding works */
 
}

/* Suggestion Table */
.suggestion-table {
  width: 100%;
  border-collapse: collapse; /* remove spacing between cells */
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.suggestion-table td {
  padding: 6px 10px;
  cursor: pointer;
  color: #fff;
}
.suggestion-table td a {
  color: #fff;
  text-decoration: none;
}
.suggestion-table td:hover {
  opacity: 0.8;
}

/* Banner Table */
.banner-table {
  margin: 40px auto;
  border-collapse: separate;
  border-spacing: 5px;
  border-radius: 12px;
  overflow: hidden;
}
.banner {
	position: relative;
	display: inline-block;
	width: 468px;
	height: 60px;
	border-radius: 12px;
	overflow: hidden;
	background-image: url(assets/img/Darkzone-2.jpg);
}
.banner img { width: 100%; height: 100%; }
.banner-text {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 12px;
  color: #4D186D;
  background: rgba(255,255,255,0.6);
  padding: 2px 4px;
  border-radius: 3px;
  pointer-events: none;
}

/* Stats Box */
.stats-box-container { text-align: center; }
.stats-box {
  display: inline-block;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 30px auto;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.stats-top { border-bottom: 1px solid #aaa; padding-bottom: 8px; margin-bottom: 8px; font-size: 16px; }
.stats-top strong { font-weight: bold; }
.stats-total { font-size: 26px; font-weight: bold; }
/* Banner Table hover effect */
.banner-table td {
    border-radius: 12px; /* ensure rounded corners for each cell */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-table td:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer */
.footer { text-align: center; padding: 10px; background-color: #7E4597; color: #fff; font-size: 14px; }

/* Responsive */
@media (max-width: 500px) {
    .search-input { width: 90%; }
    .banner { max-width: 90%; }
}
