* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f4f9;
  color: #333333;
  padding-bottom: 80px;
}

header {
  background: linear-gradient(135deg, #f6821f 0%, #d66d12 100%);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(246, 130, 31, 0.3);
}
header .logo-area h1 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
header .logo-area p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.card {
  background: #ffffff;
  margin: 20px 0;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card h2 {
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(246, 130, 31, 0.1);
  padding-bottom: 10px;
  display: inline-block;
}
.card.clickable {
  cursor: pointer;
  position: relative;
}
.card.clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(246, 130, 31, 0.15);
  border: 1px solid rgba(246, 130, 31, 0.2);
}
.card.clickable:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cccccc;
  transition: background-color 0.5s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.circle span {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffffff;
}
.circle.bg-green {
  background-color: #2ecc71;
}
.circle.bg-orange {
  background-color: #f39c12;
}
.circle.bg-red {
  background-color: #e74c3c;
}

.status {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #666666;
}

.last-update {
  font-size: 0.8rem;
  color: #999999;
  margin-top: 5px;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
table thead tr {
  background-color: #333333;
  color: #ffffff;
}
table thead tr th {
  padding: 12px;
  font-size: 0.9rem;
}
table thead tr th:first-child {
  border-top-left-radius: 8px;
}
table thead tr th:last-child {
  border-top-right-radius: 8px;
}
table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}
table tbody tr:last-child {
  border-bottom: none;
}
table tbody tr:hover {
  background-color: rgb(250.6, 250.6, 252.6);
}
table tbody tr td {
  padding: 12px;
  font-size: 0.9rem;
  color: #333333;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.active {
  display: block;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgb(227.5, 227.5, 240);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
.bottom-nav .nav-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #999999;
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.3s;
}
.bottom-nav .nav-btn i {
  font-size: 1.4rem;
  margin-bottom: 4px;
  font-style: normal;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.2s;
}
.bottom-nav .nav-btn.active {
  color: #f6821f;
  font-weight: 600;
}
.bottom-nav .nav-btn.active i {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.bottom-nav .nav-btn:hover {
  color: #d66d12;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */