.cr-calculator-wrap {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}

.cr-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cr-row {
  display: flex;
  flex-direction: column;
}

.cr-row label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cr-form select,
.cr-form input {
  padding: 0.7rem;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.time-inputs {
  display: flex;
  gap: 0.5rem;
}

.cr-form button {
  background: linear-gradient(135deg, #00b894, #0984e3);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cr-form button:hover {
  transform: scale(1.03);
}

#resultado {
  margin-top: 2rem;
  text-align: center;
}

.cr-results {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.cr-card {
  background: #f9fafc;
  padding: 1rem;
  border-radius: 12px;
  flex: 1 1 45%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cr-card h3 {
  color: #0984e3;
  margin-bottom: 0.5rem;
}

.cr-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.cr-table th,
.cr-table td {
  padding: 0.6rem;
  border-bottom: 1px solid #eee;
}

.cr-table th {
  background: #0984e3;
  color: white;
  text-align: left;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cr-table tr:hover {
  background: #f3f8ff;
}
