body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      margin: 0;
      padding: 0;
    }
    header {
      background: #333;
      color: #fff;
      padding: 1rem;
    }
    nav a {
      color: #fff;
      margin-right: 1rem;
      text-decoration: none;
    }
    .container {
      max-width: 800px;
      margin: 2rem auto;
      padding: 2rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }
    
  
  
  
  
  .mission-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: sans-serif;
}

.mission-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.mission-title {
  font-size: 1.6em;
  margin: 0;
  color: #333;
}

.mission-budget {
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745; /* green accent */
}

.mission-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
}

.mission-meta p {
  margin: 4px 0;
}

.mission-description {
  line-height: 1.5;
  color: #444;
  font-size: 1em;
  white-space: pre-line;
}




.delivery-card {
  margin: 20px auto;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  max-width: 700px;
}

.delivery-card h3 {
  margin-top: 0;
  color: #333;
}

.delivery-card p {
  margin: 8px 0;
  color: #444;
  line-height: 1.5;
}

.delivery-files {
  margin: 8px 0 15px 0;
  padding-left: 20px;
}

.delivery-files li {
  margin-bottom: 4px;
  font-size: 0.95em;
}

.delivery-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

/* Reusable buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.95em;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease-in-out;
  color: #fff;
}

.btn-success {
  background: #28a745;
}

.btn-success:hover {
  background: #218838;
}

.btn-warning {
  background: #f0ad4e;
}

.btn-warning:hover {
  background: #ec971f;
}