/**
 * Sprue Builder Styles v1.3.1
 *
 * Extends team-builder.css with sprue-specific styles.
 * Supports tier-based pricing UI (8/16/24) and multiple sprues.
 * Updated: Filter buttons (icons on mobile), progressive tier bar, review modal
 */

/* ============================================= */
/* PAGE WRAPPER                                  */
/* ============================================= */

.sprue-builder-page {
  min-height: 100vh;
  padding: var(--space-lg) 0;
  background: var(--bg-primary);
}

/* ============================================= */
/* SKILL FILTER BAR                              */
/* Uses unified .filter-btn from core/components.css */
/* Category colors applied via .cat-{category} classes */
/* =============================================*/

/* ============================================= */
/* PROGRESSIVE TIER BAR                          */
/* ============================================= */

.tier-progress-bar {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.progress-track {
  position: relative;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  overflow: visible;
  margin-bottom: var(--space-md);
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.progress-checkpoint {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.checkpoint-dot {
  width: 16px;
  height: 16px;
  background: var(--bg-tertiary);
  border: 3px solid var(--bg-secondary);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.progress-checkpoint.active .checkpoint-dot {
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.progress-checkpoint.reached .checkpoint-dot {
  background: var(--color-success);
  border-color: var(--color-success);
}

.checkpoint-label {
  position: absolute;
  top: calc(100% + 4px);
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.progress-checkpoint.active .checkpoint-label {
  color: var(--accent-primary);
}

.progress-checkpoint.reached .checkpoint-label {
  color: var(--color-success);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
}

.progress-count {
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.progress-price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--accent-primary);
}

/* ============================================= */
/* SINGLE CATEGORY SKILLS GRID                   */
/* ============================================= */

.skills-grid-single {
  display: block;
}

.skills-grid-single .category-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: var(--space-sm);
}

@media (max-width: 480px) {
  .skills-grid-single .category-skills {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================= */
/* REVIEW MODAL OVERLAY                          */
/* ============================================= */

.sprue-review-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sprue-review-modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.review-header h2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0;
  font-size: var(--font-lg);
  color: var(--text-primary);
}

.review-header h2 i {
  color: var(--accent-primary);
}

.btn-close-review {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.btn-close-review:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.review-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.review-section {
  margin-bottom: var(--space-lg);
}

.review-section:last-child {
  margin-bottom: 0;
}

.review-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-color);
}

.review-section-header i {
  color: var(--accent-primary);
}

.review-section-header span:first-of-type {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
}

.review-count {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.review-skills {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.review-skill-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.review-skill-item .skill-code {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-primary);
  min-width: 50px;
}

.review-skill-item .skill-name {
  flex: 1;
  color: var(--text-secondary);
  font-size: var(--font-sm);
}

.review-skill-item .skill-qty {
  font-weight: 600;
  color: var(--text-primary);
}

.review-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.review-total {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-total .total-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.review-total .total-skills {
  flex: 1;
  font-weight: 500;
  color: var(--text-secondary);
}

.review-total .total-price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent-primary);
}

.review-actions {
  display: flex;
  gap: var(--space-sm);
}

.review-actions .btn {
  flex: 1;
}

/* ============================================= */
/* BASE SIZE SELECTION CARDS                     */
/* ============================================= */

.base-size-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.base-size-card {
  cursor: pointer;
}

.base-size-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.base-size-card:hover .base-size-card-inner {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.base-size-card.selected .base-size-card-inner {
  border-color: var(--accent-primary);
  background: var(--accent-primary-alpha);
}

.base-size-icon {
  font-size: 3rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.base-size-card[data-size="40"] .base-size-icon {
  font-size: 3.5rem;
}

.base-size-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.base-size-value {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.base-size-label {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.base-size-desc {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.base-size-cta {
  color: var(--accent-primary);
  font-weight: 500;
  font-size: var(--font-sm);
}

.base-size-cta i {
  margin-left: var(--space-xs);
  transition: transform 0.2s ease;
}

.base-size-card:hover .base-size-cta i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .base-size-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ============================================= */
/* TIER PROGRESS CARDS (LEGACY - kept for compat)*/
/* Note: New tier-progress-bar class is preferred*/
/* ============================================= */

.tier-progress {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.tier-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.tier-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-xs) var(--space-sm);
  transition: all 0.2s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  min-width: 110px;
}

.tier-card.locked {
  opacity: 0.5;
}

.tier-card.active {
  border-color: var(--accent-primary);
  background: var(--accent-primary-alpha);
}

.tier-card.complete {
  border-color: var(--color-success);
  background: rgba(76, 175, 80, 0.1);
}

.tier-card.complete .tier-fill {
  background: var(--color-success);
}

.tier-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.tier-label {
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.tier-price {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--accent-primary);
}

.tier-card.complete .tier-price {
  color: var(--color-success);
}

.tier-bar {
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex: 1;
  min-width: 30px;
}

.tier-fill {
  height: 100%;
  background: var(--accent-primary);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.tier-progress-text {
  font-size: var(--font-xs);
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 24px;
  text-align: right;
}

.tier-card.active .tier-progress-text {
  color: var(--accent-primary);
  font-weight: 600;
}

.tier-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--border-color);
}

.tier-total .total-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.tier-total .total-skills {
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.tier-total .total-price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--accent-primary);
}

/* Mobile: Wrap tier cards */
@media (max-width: 600px) {
  .tier-cards {
    gap: var(--space-xs);
  }

  .tier-card {
    min-width: 95px;
    padding: var(--space-xs);
  }
}

/* ============================================= */
/* SPRUE PROGRESS INDICATOR (Legacy - remove)    */
/* ============================================= */

.sprue-progress {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.sprue-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.sprue-column {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition: all 0.2s ease;
}

.sprue-column.locked {
  opacity: 0.5;
}

.sprue-column.complete {
  background: var(--accent-primary-alpha);
  border: 1px solid var(--accent-primary);
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.column-title {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.column-price {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--accent-primary);
}

.column-slots {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.column-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.column-fill {
  height: 100%;
  background: var(--accent-primary);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.sprue-column.complete .column-fill {
  background: var(--color-success);
}

.sprue-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}

.total-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.total-skills {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.total-price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--accent-primary);
}

@media (max-width: 480px) {
  .sprue-columns {
    grid-template-columns: 1fr;
  }

  .sprue-column {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-sm);
    align-items: center;
  }

  .column-header {
    margin-bottom: 0;
  }

  .column-slots {
    margin-bottom: 0;
  }

  .column-bar {
    grid-column: 1 / -1;
  }
}

/* ============================================= */
/* ADDITIONAL SPRUES / SPRUE TABS                */
/* ============================================= */

.additional-sprues {
  margin-bottom: var(--space-md);
}

.additional-sprues-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.sprue-tabs {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  align-items: center;
}

.sprue-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.sprue-tab:hover {
  background: var(--bg-tertiary);
}

.sprue-tab.active {
  background: var(--accent-primary-alpha);
  border-color: var(--accent-primary);
}

.sprue-tab-title {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.sprue-tab-info {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.sprue-tab .remove-sprue {
  padding: 2px 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.sprue-tab .remove-sprue:hover {
  background: var(--color-danger);
  color: white;
}

.add-sprue-btn {
  padding: var(--space-xs) var(--space-sm) !important;
}

/* ============================================= */
/* SKILL SEARCH BOX                              */
/* ============================================= */

.skill-search-box {
  position: relative;
  margin-bottom: var(--space-md);
}

.skill-search-box > i {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.skill-search-box input {
  width: 100%;
  padding: var(--space-sm) var(--space-sm) var(--space-sm) calc(var(--space-sm) * 2 + 1em);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: var(--font-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.skill-search-box input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-primary-alpha);
}

.skill-search-box input::placeholder {
  color: var(--text-muted);
}

.skill-search-box .clear-search {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.skill-search-box .clear-search:hover {
  color: var(--text-primary);
}

/* ============================================= */
/* REVIEW SECTIONS                               */
/* ============================================= */

.review-section-full {
  grid-column: 1 / -1;
}

.review-sprue-section {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.review-sprue-section:last-child {
  margin-bottom: 0;
}

.review-sprue-section .review-section-header {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.review-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.review-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
}

.review-item-name {
  font-weight: 500;
  color: var(--text-primary);
}

.review-item-qty {
  color: var(--text-muted);
  font-size: var(--font-xs);
}

/* ============================================= */
/* TOAST NOTIFICATIONS                           */
/* ============================================= */

.toast {
  position: fixed;
  bottom: calc(80px + var(--space-md));
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: var(--font-sm);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.toast-success {
  background: var(--color-success);
  color: white;
}

.toast-warning {
  background: var(--color-warning);
  color: var(--text-primary);
}

.toast-error {
  background: var(--color-danger);
  color: white;
}

.toast-info {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

/* ============================================= */
/* HERO TITLE STYLING                            */
/* ============================================= */

.builder-hero .hero-title {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs) 0;
}

/* ============================================= */
/* STATS BAR SIZE INDICATOR                      */
/* ============================================= */

.stat-item.size-stat {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.stat-item.size-stat i {
  color: var(--accent-primary);
}

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

@media (max-width: 768px) {
  .sprue-builder-page {
    padding: var(--space-md) 0;
  }
}

@media (max-width: 480px) {
  .sprue-builder-page {
    padding: var(--space-sm) 0;
  }

  .sprue-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .sprue-tab {
    justify-content: space-between;
    min-height: 44px;
  }

  /* Tier cards - compact */
  .tier-card {
    min-width: 80px;
    padding: var(--space-xs) var(--space-sm);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .tier-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .tier-bar {
    height: 3px;
  }

  .tier-total {
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
  }

  /* Review items - full width */
  .review-items {
    flex-direction: column;
  }

  .review-item {
    width: 100%;
    justify-content: space-between;
  }
}

/* Ultra small screens */
@media (max-width: 360px) {
  .tier-cards {
    flex-direction: column;
  }

  .tier-card {
    flex-direction: row;
    min-width: 100%;
    padding: var(--space-xs);
  }

  .tier-header {
    flex: 0 0 70px;
  }

  .tier-bar {
    flex: 1;
  }

  .base-size-card-inner {
    padding: var(--space-md) var(--space-sm);
  }

  .base-size-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }

  .base-size-value {
    font-size: var(--font-xl);
  }
}

/* ============================================= */
/* SPRUE BUILDER SKILL CARDS (Team Builder)      */
/* ============================================= */

#sprueSkillsGrid .skill-card {
  cursor: pointer;
  transition: all 0.15s ease;
}

#sprueSkillsGrid .skill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#sprueSkillsGrid .skill-card:active {
  transform: translateY(0);
}

#sprueSkillsGrid .skill-card.has-qty {
  box-shadow: 0 0 12px var(--cat-glow, rgba(84, 209, 195, 0.3));
}

#sprueSkillsGrid .skill-card .card-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================= */
/* REVIEW MODAL - RESPONSIVE                     */
/* ============================================= */

@media (max-width: 480px) {
  .sprue-review-overlay {
    padding: 0;
  }
  
  .sprue-review-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .review-header,
  .review-footer {
    padding: var(--space-sm) var(--space-md);
  }
  
  .review-body {
    padding: var(--space-md);
  }
  
  .review-actions {
    flex-direction: column;
  }
  
  .review-total {
    flex-wrap: wrap;
  }
  
  .review-total .total-skills {
    order: 3;
    width: 100%;
    text-align: right;
  }
}

/* ============================================= */
/* BUILDER SWITCH CONFIRMATION MODAL             */
/* ============================================= */

.builder-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-md);
  animation: fadeIn 0.2s ease;
}

.builder-confirm-modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.2s ease;
}

.confirm-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.confirm-header i {
  font-size: 1.5rem;
  color: var(--color-warning);
}

.confirm-header h3 {
  margin: 0;
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.confirm-body {
  padding: var(--space-lg);
}

.confirm-body p {
  margin: 0 0 var(--space-sm) 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.confirm-body p:last-child {
  margin-bottom: 0;
  font-size: var(--font-sm);
  color: var(--text-tertiary);
}

.confirm-actions {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-top: 1px solid var(--border-color);
  justify-content: flex-end;
}

.confirm-actions .btn {
  min-width: 100px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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