/* src/styles.scss */
html,
body {
  height: 100%;
  margin: 0;
}
app-root {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.png-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}
.png-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.png-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.png-preview {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f9fafb;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.png-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.png-info {
  flex: 1;
}
.png-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.png-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
}
.png-category {
  display: inline-block;
  padding: 2px 8px;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  width: fit-content;
}
.png-scenario {
  font-size: 13px;
  color: #6b7280;
}
.btn-download-png {
  width: 100%;
  padding: 10px 16px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-download-png:hover {
  background: #2563eb;
}
.btn-download-all {
  padding: 12px 24px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}
.btn-download-all:hover {
  background: #059669;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
