body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 1px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 1.5px, transparent 2.5px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.8) 1.5px, transparent 2.5px),
    radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.9) 1px, transparent 2px),
    linear-gradient(135deg, #fffde7, #fff9c4, #fff3cd);
  background-size: 200px 200px, 250px 250px, 300px 300px, 220px 220px, 280px 280px, cover;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}

.main-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2,
h3 {
  text-align: center;
  color: #f57f17;
  margin: 10px 0;
  text-shadow: 0 0 8px rgba(255, 213, 79, 0.6);
}

.count-info {
  text-align: center;
  font-weight: bold;
  color: #e65100;
  margin-bottom: 15px;
}

.container {
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(245, 127, 23, 0.12);
  box-sizing: border-box;
  border: 1px solid rgba(255, 213, 79, 0.5);
  backdrop-filter: blur(4px);
}

.container-tabela {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(245, 127, 23, 0.12);
  box-sizing: border-box;
  overflow-x: auto;
  border: 1px solid rgba(255, 213, 79, 0.5);
  backdrop-filter: blur(4px);
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  color: #f57f17;
  font-weight: bold;
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="number"],
form input[type="date"],
form input[type="time"],
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ffe082;
  border-radius: 8px;
  background: #fffde7;
  box-sizing: border-box;
  transition: 0.3s;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: #f9a825;
  box-shadow: 0 0 10px rgba(249, 168, 37, 0.25);
  background: #ffffff;
}

form button {
  background: linear-gradient(135deg, #ffca28, #f9a825);
  color: #4a2f00;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(249, 168, 37, 0.25);
}

form button:hover {
  background: linear-gradient(135deg, #f9a825, #f57f17);
  transform: translateY(-1px);
}

.mensagem {
  background: #fff8e1;
  color: #e65100;
  border: 1px solid #ffe082;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 224, 130, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: linear-gradient(135deg, #f9a825, #ffca28);
  color: #4a2f00;
  padding: 12px;
  text-transform: uppercase;
  font-size: 13px;
}

table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ffe082;
}

table tr:nth-child(even) {
  background: #fffde7;
}

table tr:nth-child(odd) {
  background: #fff8e1;
}

table tr:hover {
  background: #ffe082;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 20px;
  }

  .container-tabela {
    width: 95%;
  }

  table th,
  table td {
    font-size: 11px;
    padding: 8px;
  }
}