body {
  font-family: Arial, sans-serif;
  background: #f2f4f7;
}

.container {
  width: 85%;
  margin: 40px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h1 {
  margin-bottom: 5px;
}

.subtitle {
  color: #666;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #f8f9fa;
  text-align: left;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.download {
  background: #3498db;
  color: #fff;
}

.delete {
  background: #e74c3c;
  color: #fff;
}

