.camera-screen { flex: 1; display: flex; flex-direction: column; }

.camera-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.camera-title {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--blue-electric);
}

.camera-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.photo-slot {
  aspect-ratio: 1;
  background: var(--glass);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--text-dim);
  font-size: 2rem;
}
.photo-slot.filled {
  border-style: solid;
  border-color: var(--green-ok);
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--red-alert);
  border-radius: 50%;
  color: var(--red-alert);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-input { display: none; }

.comment-area {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px;
}
.comment-area label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.comment-area textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  min-height: 80px;
  outline: none;
}
