/*
  Sinioo — Dashboard & Profile Professional Design System
  Unified styles for dashboard.html and profile.html
 */

/* ============================================
   PAGE STRUCTURE
   ============================================ */
.dashboard-page {
  padding-top: 72px;
  min-height: 100vh;
}

/* ============================================
   HERO SECTION
   ============================================ */
.dashboard-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.dashboard-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 252, 231, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--sub);
  font-weight: 400;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #2ff924;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-icon.green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.stat-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.dashboard-main {
  padding: 3rem 0 5rem;
  min-height: calc(100vh - 72px);
  background: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

.view-all-link {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--light);
  transition: all 0.2s ease;
}

.view-all-link:hover {
  background: #dcfce7;
  color: #166534;
}

/* ============================================
   ACTION CARDS
   ============================================ */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.08) 0%, rgba(219, 234, 254, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #2ff924;
}

.action-card:hover::before {
  opacity: 1;
}

.action-card:active {
  transform: translateY(-1px);
}

.action-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.action-icon.green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.action-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.action-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.action-icon.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.action-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  position: relative;
  z-index: 1;
}

.action-card p {
  font-size: 0.9rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================
   VERIFICATION LIST
   ============================================ */
.verification-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.verification-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  transition: all 0.2s ease;
}

.verification-card-item:hover {
  border-color: #2ff924;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.verification-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.verification-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verification-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verification-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verification-badge.status-approved {
  background: #dcfce7;
  color: #166534;
}

.verification-badge.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.verification-badge.status-rejected {
  background: #fee2e2;
  color: #991b1b;
}

.verification-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.action-btn:hover {
  background: var(--light);
  color: var(--text);
}

.edit-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.delete-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.verification-card-item:hover {
  border-color: #2ff924;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.verification-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.verification-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.verification-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.verification-badge {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.status-approved {
  background: #dcfce7;
  color: #166534;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-rejected {
  background: #fee2e2;
  color: #991b1b;
}

/* ============================================
   EMPTY & LOADING STATES
   ============================================ */
.loading-section,
.not-logged-in {
  display: none;
  padding: 4rem 0;
}

.loading-state,
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: #2ff924;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-state p {
  color: var(--muted);
  font-size: 0.95rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
  color: #92400e;
}

.empty-icon svg {
  opacity: 0.8;
  width: 40px;
  height: 40px;
}

.empty-state h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.empty-state p {
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.empty-state a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.profile-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 100%);
}

.avatar-initials {
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.profile-info h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.profile-role {
  font-size: 0.9rem;
  color: var(--sub);
  margin: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.profile-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.profile-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.profile-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light);
}

.profile-field:last-child {
  border-bottom: none;
}

.profile-field .label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.profile-field .value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.profile-field .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.badge.verified {
  background: #dcfce7;
  color: #166534;
}

/* Sign Out Button */
.sign-out-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--sub);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.sign-out-btn:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

/* ============================================
   ACTIVITY TIMELINE
   ============================================ */
.activity-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-item {
  padding: 0.85rem;
  background: var(--light);
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.activity-item .action {
  font-weight: 600;
  color: var(--text);
}

.activity-time {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.empty-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .dashboard-hero {
    padding: 5.5rem 0 3rem;
  }

  .profile-hero {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-content {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

  .stat-card {
    padding: 1.25rem;
    gap: 0.75rem;
    text-align: left;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
  }

  .action-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .action-card {
    padding: 1.25rem;
  }

  .action-icon {
    width: 48px;
    height: 48px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .dashboard-main {
    padding: 2.5rem 0 3.5rem;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

   .verification-card-item {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 0.75rem;
     padding: 1rem;
     border: 1px solid var(--border);
     border-radius: 14px;
     background: var(--white);
     transition: all 0.2s ease;
   }

   .verification-card-item:hover {
     border-color: #d1d5db;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   }

   .verification-actions {
     align-self: stretch;
     justify-content: flex-end;
   }

  .verification-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }

  .verification-details {
    flex: 1;
    min-width: 0;
  }

  .verification-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .verification-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .verification-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  .verification-badge.status-approved {
    background: #dcfce7;
    color: #166534;
  }

  .verification-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
  }

  .verification-badge.status-rejected {
    background: #fee2e2;
    color: #991b1b;
  }

  .verification-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
  }

  .action-btn:hover {
    background: var(--light);
    color: var(--text);
  }

  .edit-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
  }

  .delete-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
  }

  .verification-logo {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .dashboard-hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .action-card h3 {
    font-size: 1.05rem;
  }

  .action-card p {
    font-size: 0.9rem;
  }

  .profile-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .profile-info h1 {
    font-size: 1.4rem;
  }

  .profile-role {
    font-size: 0.85rem;
  }

   .container {
     padding: 0 1rem;
   }

/* ============================================
   MODAL
   ============================================ */
 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(4px);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10000;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .modal-overlay.open {
   opacity: 1;
   visibility: visible;
 }

 .modal-dialog {
   position: relative;
   background: var(--white);
   border-radius: 16px;
   width: 90%;
   max-width: 420px;
   box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
   transform: scale(0.95);
   transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   overflow: hidden;
 }

 .modal-overlay.open .modal-dialog {
   transform: scale(1);
 }

 .modal-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.25rem 1.5rem;
   border-bottom: 1px solid var(--border);
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
 }

 .modal-header h3 {
   font-family: 'Instrument Serif', serif;
   font-size: 1.25rem;
   font-weight: 500;
   color: var(--text);
   margin: 0;
 }

 .modal-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: none;
   background: rgba(0, 0, 0, 0.05);
   font-size: 1.5rem;
   line-height: 1;
   color: var(--muted);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.2s ease;
 }

 .modal-close:hover {
   background: #fef2f2;
   color: #ef4444;
 }

 .modal-body {
   padding: 1.5rem;
   font-size: 0.95rem;
   color: var(--text);
   line-height: 1.6;
   text-align: center;
 }

 .modal-credential-id {
   margin-top: 0.75rem;
   padding: 0.5rem 0.75rem;
   background: var(--light);
   border-radius: 8px;
   font-family: 'Inter', monospace;
   font-size: 0.85rem;
   color: var(--muted);
 }

 .modal-footer {
   display: flex;
   gap: 0.75rem;
   justify-content: center;
   padding: 1rem 1.5rem;
   border-top: 1px solid var(--border);
   background: var(--light);
 }

.btn-secondary {
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-secondary:hover {
  color: #2563eb;
  border-color: #2563eb;
  background: #eff6ff;
}

.btn-danger {
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-danger:hover {
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .modal-dialog {
    width: 95%;
    margin: 1rem;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .modal-footer {
    padding: 0.75rem 1.25rem;
    flex-direction: column-reverse;
  }

  .btn-secondary,
  .btn-danger {
    width: 100%;
  }
}
}
