body { font-family: system-ui, sans-serif; margin: 0; padding: 0; background: #fafafa; color: #333; }
header { background: #000; color: #fff; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: bold; font-size: 1.2rem; }
main { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; }
label { display: flex; flex-direction: column; gap: 0.2rem; font-weight: 500; }
input, select, textarea { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; }
button { padding: 0.75rem 1.5rem; background: #000; color: #fff; border: none; cursor: pointer; border-radius: 4px; font-weight: bold; }
button:disabled { background: #ccc; }
.shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.shot-card { background: #fff; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.shot-img-container { width: 100%; aspect-ratio: 16/9; background: #eee; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;}
.shot-img-container img { width: 100%; height: 100%; object-fit: cover; }
.metadata { font-size: 0.9rem; margin-bottom: 1rem; }
.metadata strong { color: #555; }
.shot-actions { display: flex; gap: 0.5rem; flex-direction: column; }
.tweak-input { width: 100%; box-sizing: border-box; }
.approval-actions { margin-top: 3rem; text-align: center; }
.status-generating { color: #0066cc; font-weight: bold; }
