/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 25 2025 | 19:44:38 */
.destinatario-bloco {
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}
.busca-destinatario {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}
.resultado-busca {
  background: #fff;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  margin-top: 5px;
  z-index: 999;
  position: relative;
}
.resultado-busca div:hover {
  background-color: #eef;
  cursor: pointer;
}
.destinatario-confirmado {
  margin-top: 5px;
  color: green;
  font-weight: bold;
}

/* AQUI A PAGINA CONFERIR COMPRA ------------------------------------- */

/* Estilo do bloco de resumo da compra */
.resumo-compra {
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
  background-color: #fefefe;
  max-width: 890px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: sans-serif;
}

/* Título principal */
.resumo-compra h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 26px;
  margin-bottom: 20px;
}

/* Títulos menores */
.resumo-compra h3 {
  margin-top: 25px;
  font-size: 20px;
  color: #333;
}

/* Lista de destinatários */
.resumo-compra ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.resumo-compra li {
  background: #eef7ff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Botão principal */
.resumo-compra button[type="submit"] {
  background: #0062cc;
  color: white;
  font-size: 16px;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 25px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.resumo-compra button[type="submit"]:hover {
  background: #004fa3;
}

/* Botão voltar */
.resumo-compra .voltar-btn {
  display: inline-block;
  text-align: center;
  margin-top: 15px;
  color: #555;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid #ccc;
  padding: 10px 18px;
  border-radius: 6px;
  background-color: #f5f5f5;
  transition: background 0.3s ease;
}

.resumo-compra .voltar-btn:hover {
  background-color: #e2e2e2;
}

/* Responsividade */
@media (max-width: 600px) {
  .resumo-compra {
    padding: 15px;
  }

  .resumo-compra h2 {
    font-size: 22px;
  }

  .resumo-compra button,
  .resumo-compra .voltar-btn {
    font-size: 15px;
    padding: 10px;
  }
}

