/* Jailarr - Custom Styles (used with Tailwind CSS) */

/* ===== ANIMATIONS ===== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes award-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
  }
}

@keyframes award-winner-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.9));
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes trophy-bounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(-5deg);
  }

  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes copyPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation utility classes */
.animate-pulse-custom {
  animation: pulse 2s ease-in-out infinite;
}

.animate-award-glow {
  animation: award-glow 2s ease-in-out infinite;
}

.animate-award-winner-glow {
  animation: award-winner-glow 2s ease-in-out infinite;
}

.animate-shimmer {
  animation: shimmer 3s linear infinite;
}

.animate-trophy-bounce {
  animation: trophy-bounce 2s ease-in-out infinite;
}

.animate-copy-pulse {
  animation: copyPulse 0.3s ease;
}

.animate-slide-up {
  animation: slideUp 0.3s ease;
}

/* ===== PSEUDO-ELEMENT EFFECTS ===== */

/* Card charges fade effect */
.card-charges::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, #242938);
}

/* Award card top bar */
.award-winner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

/* Awards modal shimmer overlay */
.awards-header-shimmer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%);
  animation: shimmer 3s linear infinite;
}

/* Modal top gradient bars */
.modal-gradient-bar-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffd700, #ff8c00, #ffd700, transparent);
  border-radius: 20px 20px 0 0;
}

.modal-gradient-bar-purple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #a855f7, #7c3aed, #a855f7, transparent);
  border-radius: 20px 20px 0 0;
}

/* Award-winning card top gradient */
.has-awards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
  border-radius: 16px 16px 0 0;
}

/* Drop zone placeholder text */
.drop-zone.empty::before {
  content: "Drop charges here";
  color: #8b98a5;
  font-size: 0.85rem;
}

/* Charge item bullets */
.charge-item::before {
  content: "•";
  color: #00c896;
  margin-right: 0.5rem;
}

/* ===== INTERACTIVE STATES ===== */

/* History content expand/collapse */
.history-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.history-content.expanded {
  max-height: 2000px;
}

.history-toggle-icon {
  transition: transform 0.3s ease;
}

.history-toggle.expanded .history-toggle-icon {
  transform: rotate(180deg);
}

/* Pin button states */
.pin-btn .pin-icon-filled {
  display: none;
}

.pin-btn.pinned .pin-icon-outline {
  display: none;
}

.pin-btn.pinned .pin-icon-filled {
  display: inline;
}

/* Game result states */
.game-result {
  display: none;
}

.game-result.show {
  display: block;
}

.game-result.perfect {
  background: rgba(0, 200, 150, 0.15);
  color: #00c896;
}

.game-result.good {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.game-result.poor {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
}

/* ===== DYNAMICALLY-RENDERED ELEMENTS (from app.js) ===== */

/* Inmate Card */
.inmate-card {
  position: relative;
  background: #242938;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2f3336;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.inmate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.inmate-card.has-awards {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.03);
}

.inmate-card.has-awards:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.25);
}

.card-header {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.mugshot {
  width: 100px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  background: #1a1f2e;
  flex-shrink: 0;
}

.mugshot-placeholder {
  width: 100px;
  height: 120px;
  border-radius: 8px;
  background: #1a1f2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b98a5;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.inmate-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.inmate-meta {
  font-size: 0.85rem;
  color: #8b98a5;
  margin-bottom: 0.5rem;
}

.booking-date {
  font-size: 0.8rem;
  color: #8b98a5;
}

.card-charges {
  padding: 0 1rem 1rem;
  font-size: 0.85rem;
  color: #8b98a5;
  max-height: 60px;
  overflow: hidden;
  position: relative;
}

/* Badges */
.agency-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: #1d9bf0;
  color: white;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.status-active {
  background: rgba(0, 186, 124, 0.2);
  color: #00ba7c;
}

.status-released {
  background: rgba(139, 152, 165, 0.2);
  color: #8b98a5;
}

.updated-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 173, 31, 0.2);
  color: #ffad1f;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Award badges on cards */
.card-awards {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.35rem;
  z-index: 10;
  background: rgba(36, 41, 56, 0.85);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.award-badge {
  font-size: 1.5rem;
  cursor: help;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
  transition: transform 0.2s, filter 0.2s;
  animation: award-glow 2s ease-in-out infinite;
}

.award-badge:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
  animation: none;
}

.card-pinned-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 1.25rem;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  z-index: 5;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: #8b98a5;
  grid-column: 1 / -1;
}

.empty-state h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #e7e9ea;
}

/* Detail items in modal */
.detail-item label {
  display: block;
  font-size: 0.75rem;
  color: #8b98a5;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.detail-item span {
  font-size: 0.95rem;
}

/* History items */
.history-item {
  padding: 1rem;
  border-bottom: 1px solid #2f3336;
  font-size: 0.85rem;
}

.history-item:last-child {
  border-bottom: none;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.history-field {
  font-weight: 600;
  color: #1d9bf0;
  text-transform: capitalize;
}

.history-date {
  color: #8b98a5;
  font-size: 0.75rem;
}

.history-diff {
  display: grid;
  gap: 0.5rem;
}

.history-value {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: pre-line;
  line-height: 1.5;
}

.history-value-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.history-old {
  background: rgba(244, 33, 46, 0.1);
  border-left: 3px solid #f4212e;
}

.history-old .history-value-label {
  color: #f4212e;
}

.history-new {
  background: rgba(0, 186, 124, 0.1);
  border-left: 3px solid #00ba7c;
}

.history-new .history-value-label {
  color: #00ba7c;
}

.history-value-content {
  color: #e7e9ea;
}

.history-empty {
  color: #8b98a5;
  font-style: italic;
}

.diff-removed {
  background: rgba(244, 33, 46, 0.25);
  text-decoration: line-through;
  border-radius: 2px;
  padding: 0 2px;
}

.diff-added {
  background: rgba(0, 186, 124, 0.25);
  font-weight: 600;
  border-radius: 2px;
  padding: 0 2px;
}

/* History mugshot images */
.history-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.history-image-container {
  text-align: center;
  flex: 1;
  max-width: 150px;
}

.history-image-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.history-image-old .history-image-label {
  color: #f4212e;
}

.history-image-new .history-image-label {
  color: #00ba7c;
}

.history-mugshot {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  background: #1a1f2e;
}

.history-image-old .history-mugshot {
  border: 2px solid #f4212e;
}

.history-image-new .history-mugshot {
  border: 2px solid #00ba7c;
}

.history-image-placeholder {
  width: 100px;
  height: 120px;
  border-radius: 6px;
  background: #1a1f2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b98a5;
  font-size: 0.75rem;
}

/* Copy link button states */
.copy-link-btn.copied {
  background: #00ba7c;
  color: white;
  animation: copyPulse 0.3s ease;
}

/* Game elements */
.mugshot-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.game-mugshot {
  width: 180px;
  height: 225px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #2f3336;
  transition: border-color 0.3s;
}

.mugshot-slot.correct .game-mugshot {
  border-color: #00c896;
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.4);
}

.mugshot-slot.incorrect .game-mugshot {
  border-color: #ff4757;
  box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
}

.drop-zone {
  width: 280px;
  min-height: 100px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transition: all 0.3s;
  padding: 0.5rem;
}

.drop-zone.empty {
  align-items: center;
  justify-content: center;
}

.drop-zone .charge-card {
  width: 100%;
}

.drop-zone.drag-over {
  border-color: #00c896;
  background: rgba(0, 200, 150, 0.1);
}

.charge-card {
  background: #242938;
  border: 2px solid #2f3336;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  width: 280px;
  font-size: 0.8rem;
  cursor: grab;
  transition: all 0.2s;
  max-height: 180px;
  overflow-y: auto;
}

.charge-item {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.3;
}

.charge-item:last-child {
  border-bottom: none;
}

.charge-card:hover {
  border-color: rgba(0, 200, 150, 0.5);
  transform: translateY(-2px);
}

.charge-card.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.charge-card.placed {
  cursor: grab;
}

.charge-card.correct {
  border-color: #00c896;
  background: rgba(0, 200, 150, 0.1);
}

.charge-card.incorrect {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.view-profile-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #1d9bf0;
  border-radius: 8px;
  background: rgba(29, 155, 240, 0.15);
  color: #1d9bf0;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.view-profile-btn:hover {
  background: #1d9bf0;
  color: white;
}

/* Award winner cards in modal */
.award-winner-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.award-winner-card:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.08));
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(5px);
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.15);
}

.award-winner-mugshot {
  width: 90px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  background: #242938;
}

.award-winner-mugshot-placeholder {
  width: 90px;
  height: 110px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  background: #242938;
  color: #8b98a5;
  font-size: 2rem;
}

.award-winner-content {
  flex: 1;
  min-width: 0;
}

.award-winner-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.award-winner-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
  animation: award-winner-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.award-winner-title-section {
  flex: 1;
}

.award-winner-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.award-winner-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e7e9ea;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.award-winner-description {
  font-size: 0.95rem;
  color: #8b98a5;
  line-height: 1.5;
  margin-top: 0.75rem;
  font-style: italic;
  border-left: 3px solid rgba(255, 215, 0, 0.4);
  padding-left: 0.75rem;
}

.award-winner-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.award-stat {
  background: rgba(255, 215, 0, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #8b98a5;
}

.award-stat strong {
  color: #ffd700;
}

.awards-empty,
.awards-disabled {
  text-align: center;
  padding: 3rem;
  color: #8b98a5;
}

.awards-empty-icon,
.awards-disabled-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Modal overlay - hidden by default, shown with .active */
.modal-overlay {
  display: none;
}

.modal-overlay.active {
  display: flex !important;
}

/* ===== TABLE VIEW STYLES ===== */

#inmateTable th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #e7e9ea;
  white-space: nowrap;
  position: relative;
  user-select: none;
}

#inmateTable th .resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  cursor: col-resize;
  background: transparent;
  transition: background 0.2s;
}

#inmateTable th .resize-handle:hover,
#inmateTable th .resize-handle.resizing {
  background: #1d9bf0;
}

#inmateTable td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2f3336;
  color: #e7e9ea;
  vertical-align: middle;
}

#inmateTable tbody tr {
  cursor: pointer;
  transition: background 0.15s;
}

#inmateTable tbody tr:hover {
  background: rgba(29, 155, 240, 0.1);
}

#inmateTable tbody tr.pinned-row {
  background: rgba(255, 215, 0, 0.05);
}

#inmateTable tbody tr.pinned-row:hover {
  background: rgba(255, 215, 0, 0.1);
}

.table-status-badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.table-status-active {
  background: rgba(0, 186, 124, 0.2);
  color: #00ba7c;
}

.table-status-released {
  background: rgba(139, 152, 165, 0.2);
  color: #8b98a5;
}

.table-agency-badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: #1d9bf0;
  color: white;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.table-charges {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Column settings checkbox styles */
.column-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background 0.15s;
}

.column-checkbox-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.column-checkbox-item input[type="checkbox"] {
  accent-color: #1d9bf0;
  width: 16px;
  height: 16px;
}

/* ===== COMPACT CARD STYLES ===== */

.compact-card {
  position: relative;
  background: #242938;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2f3336;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(29, 155, 240, 0.3);
}

.compact-card.has-awards {
  border-color: rgba(255, 215, 0, 0.4);
}

.compact-card.has-awards:hover {
  border-color: rgba(255, 215, 0, 0.6);
}

.compact-mugshot {
  width: 60px;
  height: 75px;
  border-radius: 6px;
  object-fit: cover;
  background: #1a1f2e;
  margin-bottom: 0.5rem;
}

.compact-mugshot-placeholder {
  width: 60px;
  height: 75px;
  border-radius: 6px;
  background: #1a1f2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b98a5;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.compact-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e7e9ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 0.35rem;
}

.compact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.compact-agency-badge {
  padding: 0.1rem 0.3rem;
  background: #1d9bf0;
  color: white;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
}

.compact-status-badge {
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
}

.compact-status-active {
  background: rgba(0, 186, 124, 0.2);
  color: #00ba7c;
}

.compact-status-released {
  background: rgba(139, 152, 165, 0.2);
  color: #8b98a5;
}

.compact-pinned {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  font-size: 0.75rem;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 768px) {
  .inmate-card .card-header {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .mugshot,
  .mugshot-placeholder {
    width: 80px;
    height: 100px;
    font-size: 2rem;
  }

  .inmate-name {
    font-size: 1rem;
  }

  .game-mugshot {
    width: 120px;
    height: 150px;
  }

  .drop-zone,
  .charge-card {
    width: 100%;
    max-width: 240px;
  }

  .award-winner-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 0.75rem;
  }

  .award-winner-mugshot,
  .award-winner-mugshot-placeholder {
    width: 80px;
    height: 100px;
  }

  .award-winner-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .award-winner-emoji {
    font-size: 2rem;
  }

  .award-winner-title-section {
    text-align: center;
  }

  .award-winner-name {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}