body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #fff0f5, #ffe4ec);
  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: #c2185b;
  margin: 10px 0;
}

.count-info {
  text-align: center;
  font-weight: bold;
  color: #ad1457;
  margin-bottom: 15px;
}

.container {
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.08);
  box-sizing: border-box;
}

.container-tabela {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.08);
  box-sizing: border-box;
  overflow-x: auto;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  color: #c2185b;
  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 #f3c1d6;
  border-radius: 6px;
  background: #fffbfd;
  box-sizing: border-box;
  transition: 0.3s;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: #d81b60;
  box-shadow: 0 0 8px rgba(216, 27, 96, 0.2);
  background: #ffffff;
}

form button {
  background: #d81b60;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #c2185b;
}

.mensagem {
  background: #fce4ec;
  color: #ad1457;
  border: 1px solid #f8bbd0;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

table th {
  background: #d81b60;
  color: white;
  padding: 12px;
  text-transform: uppercase;
  font-size: 13px;
}

table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #f3c1d6;
}

table tr:nth-child(even) {
  background: #fff7fa;
}

table tr:nth-child(odd) {
  background: #ffeaf1;
}

table tr:hover {
  background: #f8bbd0;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 20px;
  }

  .container-tabela {
    width: 95%;
  }

  table th,
  table td {
    font-size: 11px;
    padding: 8px;
  }
}