
body {
	padding: 0;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

/* Date time display */
#currentDateTime {
  color: #d4a017; /* Desert gold */
  font-size: 0.9rem;
  padding: 0.25rem 0;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}
.card p:last-child {
	margin-bottom: 0;
}
/* Trade table styling */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #2d3748;
}

th {
  background-color: #2d3748;
  font-weight: 600;
  position: sticky;
  top: 0;
}

tr:hover {
  background-color: #2d3748;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* Market trend indicators */
.text-green-500 {
  color: #10B981;
}

/* Chest rarity colors */
.border-gray-400 {
  border-color: #9CA3AF;
}
.border-green-400 {
  border-color: #34D399;
}
.border-blue-400 {
  border-color: #60A5FA;
}
.border-purple-500 {
  border-color: #8B5CF6;
}
.border-yellow-500 {
  border-color: #F59E0B;
}
.text-red-500 {
  color: #EF4444;
}

/* Player profile positioning */
player-profile {
  position: relative;
  display: inline-block;
}

