/**
 * Estilos para o sistema de notificações
 */
.rastreamento-notification-form {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rastreamento-notification-title {
  color: #003399;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.rastreamento-notification-description {
  color: #666;
  font-size: 14px;
  margin: 0 0 20px 0;
}

.rastreamento-notification-options {
  margin-bottom: 20px;
}

.rastreamento-notification-option {
  margin-bottom: 15px;
}

.rastreamento-notification-checkbox {
  margin-right: 8px;
}

.rastreamento-notification-label {
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.rastreamento-notification-input-container {
  margin-top: 10px;
  margin-left: 25px;
}

.rastreamento-notification-input {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.rastreamento-notification-preferences {
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.rastreamento-notification-subtitle {
  font-size: 16px;
  color: #003399;
  margin: 0 0 15px 0;
}

.rastreamento-notification-preference {
  margin-bottom: 10px;
}

.rastreamento-notification-submit {
  margin-top: 20px;
}

.rastreamento-notification-button {
  background-color: #003399;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rastreamento-notification-button:hover {
  background-color: #002277;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rastreamento-notification-button-icon {
  margin-right: 8px;
  font-size: 18px;
}

.rastreamento-notification-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
}

.rastreamento-notification-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.rastreamento-notification-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* WhatsApp específico */
.rastreamento-whatsapp-button {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.rastreamento-whatsapp-button:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rastreamento-whatsapp-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Responsividade */
@media screen and (max-width: 480px) {
  .rastreamento-notification-form {
    padding: 15px;
  }

  .rastreamento-notification-input {
    max-width: 100%;
  }
}
