body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f6fa;
  color: #333;
  margin: 0;
  padding: 0;
}
header, footer {
  background-color: #2d50d7;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.logo { width: 160px; display: block; margin: 0 auto 10px auto; }
#input-section {
  width: 80%;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#publicacao-input {
  width: 100%;
  height: 200px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}
.destinos { display: flex; gap: 10px; margin-top: 10px; }
.destinos input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.acoes { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
#analisar-btn {
  background-color: #2d50d7;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
}
#analisar-btn:hover { background-color: #1f3ab3; }
.export-buttons button {
  margin-right: 10px;
  background: #1f3ab3;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
#cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #fff;
  border-left: 6px solid #2d50d7;
  border-radius: 10px;
  width: 380px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card h3 { color: #2d50d7; }
.card p { font-size: 14px; }
.status { font-weight: bold; }
.status.vencido { color: red; }
.status.andamento { color: green; }
.envios { margin-top: 10px; display: flex; gap: 10px; }
.envios a {
  text-decoration: none;
  background-color: #2d50d7;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.envios a:hover { background-color: #1f3ab3; }
footer { text-align: center; padding: 10px; margin-top: 50px; }