/* assets/style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #273a49;
  color: #273c4c;
}

.header {
  background: #1d2c38;
  color: white;
  padding: 10px 20px;
}

.header .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu-item {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  background: #318b81;
}

.menu-item.actived,
.menu-item:hover {
 background: #318b81;
}

.lottery-main {
  padding: 5px;
  max-width: 1000px;
  margin: auto;
}

.lottery-group {
  margin-bottom: 30px;
}

.lottery-group h2 {
  font-size: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #d32f2f;
  padding-left: 10px;
  color: #fff;
}

.lottery-item {
  background: #2d4561;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-left: 4px solid #2196f3;
  margin-bottom: 10px;
  border-radius: 4px;
  transition: box-shadow 0.2s;
}

.lottery-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lottery-name {
  font-weight: 600;
  font-size: 16px;
  color: #61ffeb;
}

.lottery-result {
  text-align: right;
}

.numbers {
  display: inline-block;
  font-family: monospace;
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
}

.countdown {
  display: inline-block;
  font-size: 14px;
  color: #ff5722;
  font-weight: bold;
}

.footer {
  margin-top: 0px;
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 15px;
}

.history-wrapper {
  padding: 0.5rem;
}
.history-item {
  background: #2d4561;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid #ddd;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.history-item .history-date,
.history-item .history-time {
  font-size: 0.9rem;
  color: #ffffff;
}
.history-item .history-numbers {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}