.photo-studio-review {
  display: grid;
  gap: 8px;
  width: min(100%, 304px);
  margin: 4px auto 0;
  padding: 10px;
  border: 1px solid #b9cbe3;
  border-radius: 7px;
  background: #f7faff;
  box-shadow: 0 5px 14px rgba(22, 56, 101, 0.09);
  font-family: Arial, sans-serif;
}

.photo-studio-review[hidden] {
  display: none !important;
}

.photo-studio-review-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.photo-studio-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #185aa5;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.photo-studio-review[data-status="Aprovada"] .photo-studio-score {
  background: #168554;
}

.photo-studio-review[data-status="Reprovada"] .photo-studio-score {
  background: #ad3442;
}

.photo-studio-review-title,
.photo-studio-review-copy {
  margin: 0;
}

.photo-studio-review-title {
  color: #102d59;
  font-size: 12px;
  font-weight: 800;
}

.photo-studio-review-copy {
  margin-top: 2px;
  color: #48617f;
  font-size: 10px;
  line-height: 1.35;
}

.photo-studio-review-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-studio-review-list li {
  padding-left: 12px;
  color: #263f60;
  font-size: 9.5px;
  line-height: 1.35;
  position: relative;
}

.photo-studio-review-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2675c8;
}

.photo-studio-review-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.photo-studio-action {
  min-width: 0;
  min-height: 32px;
  padding: 6px 8px;
  border: 1px solid #2869af;
  border-radius: 6px;
  background: #fff;
  color: #174b84;
  font: 800 9.5px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(26, 79, 133, 0.1);
}

.photo-studio-action.is-primary {
  background: #1b65ad;
  color: #fff;
}

.photo-studio-action:hover,
.photo-studio-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(26, 79, 133, 0.18);
}

.photo-studio-action:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.photo-preview-card.photo-studio-v219 {
  max-height: min(94vh, 780px);
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.photo-preview-card.photo-studio-v219::-webkit-scrollbar {
  width: 8px;
}

.photo-preview-card.photo-studio-v219::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #7188a8;
  background-clip: padding-box;
}

@media (max-width: 560px) {
  .photo-studio-review {
    width: 100%;
  }
}

@media print {
  .photo-studio-review {
    display: none !important;
  }
}
