:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --info-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #ffd93d 0%, #ffb800 100%);
  --danger-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Search Card */
.search-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-form {
  display: flex;
  justify-content: center;
}

.search-group {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 10px;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.2rem;
}

.search-input {
  flex: 1;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #f093fb;
  box-shadow: 0 0 0 0.2rem rgba(240, 147, 251, 0.25);
}

.search-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
}

/* Card Animations */
.card {
  animation: slideUp 0.5s ease-out;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px 16px 0 0 !important;
  padding: 20px;
}

.card-header h5 {
  color: white;
  font-weight: 600;
  margin: 0;
}

.table-borderless td,
.table-borderless th {
  padding: 12px;
  border: none;
}

.table-borderless tr {
  transition: background 0.3s ease;
}

.table-borderless tr:hover {
  background: #f8f9fa;
}

/* Badge Styles */
.badge {
  padding: 8px 15px;
  border-radius: 10px;
  font-weight: 500;
}

/* Edit Form Styles */
.edit-form {
  margin-top: 8px;
}

.edit-form .input-group {
  max-width: 300px;
}

.edit-btn {
  padding: 4px 8px;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .search-group {
    flex-direction: column;
  }
  
  .search-icon {
    left: 15px;
  }
  
  .search-input {
    padding: 12px 15px 12px 45px;
  }
  
  .search-btn {
    width: 100%;
  }
}

/* ========================================
   🔍 USER INFO CONTAINER
   ======================================== */

.user-info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ========================================
   🎨 HERO SECTION
   ======================================== */

.user-info-hero {
  background: var(--primary-gradient);
  border-radius: 24px;
  padding: 50px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-icon-container {
  margin-bottom: 20px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
}

.icon-circle i {
  color: white;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: fadeInDown 0.6s ease-out;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatAround 20s infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: 10%;
  animation-delay: 5s;
}

.element-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 5%;
  animation-delay: 10s;
}

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

/* ========================================
   🔎 SEARCH CARD
   ======================================== */

.search-modern-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.search-modern-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.search-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.search-card-header i {
  font-size: 1.5rem;
  color: #667eea;
}

.search-card-header h3 {
  margin: 0;
  font-weight: 700;
  color: #333;
}

.search-form-modern {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  gap: 10px;
}

.search-input-field {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e0e7ff;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input-field:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-btn-modern,
.clear-btn-modern {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn-modern {
  background: var(--primary-gradient);
  color: white;
}

.search-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.clear-btn-modern {
  background: var(--danger-gradient);
  color: white;
}

.clear-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* ========================================
   ℹ️ INFO ALERT
   ======================================== */

.alert-info-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
  border: none;
  border-left: 4px solid #4facfe;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.alert-info-modern ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.alert-info-modern li {
  margin-bottom: 8px;
}

/* ========================================
   👤 USER CARD
   ======================================== */

.user-card-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.user-card-header {
  background: var(--primary-gradient);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.user-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.user-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.user-header-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.user-header-info h3 {
  color: white;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.user-id-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.user-card-body {
  padding: 30px;
}

.info-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.info-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.info-section h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section h4 i {
  color: #667eea;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.info-value {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.copyable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.copyable:hover {
  color: #667eea;
  transform: scale(1.05);
}

.copyable::after {
  content: '📋';
  position: absolute;
  right: -25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copyable:hover::after {
  opacity: 1;
}

.score-badge {
  background: var(--success-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
}

.giftcode-badge {
  background: var(--warning-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
}

.referral-name {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-block;
}

.action-buttons-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.action-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-modern {
  background: var(--primary-gradient);
  color: white;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  color: white;
}

.btn-secondary-modern {
  background: var(--secondary-gradient);
  color: white;
}

.btn-secondary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
  color: white;
}

/* ========================================
   📊 TABLE CARDS
   ======================================== */

.table-modern-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.table-card-header {
  background: var(--primary-gradient);
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-card-header h3 {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.count-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.table-container-modern {
  overflow-x: auto;
  padding: 30px;
}

.user-info-table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.user-info-table-modern thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.user-info-table-modern thead th {
  padding: 15px;
  color: white;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  font-size: 0.9rem;
}

.user-info-table-modern thead th:first-child {
  border-top-left-radius: 12px;
}

.user-info-table-modern thead th:last-child {
  border-top-right-radius: 12px;
}

.user-info-table-modern tbody tr {
  transition: all 0.3s ease;
  background: white;
}

.user-info-table-modern tbody tr:nth-child(even) {
  background: #f8f9ff;
}

.user-info-table-modern tbody tr:hover {
  background: linear-gradient(90deg, #f0f4ff 0%, #e8ecff 100%);
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.user-info-table-modern tbody td {
  padding: 15px;
  border-bottom: 1px solid #e8ecff;
  vertical-align: middle;
}

.user-info-table-modern tbody tr:last-child td {
  border-bottom: none;
}

.code-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.amount-display {
  font-weight: 700;
  color: #43e97b;
  font-size: 1.1rem;
}

.type-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.type-daily {
  background: var(--info-gradient);
  color: white;
}

.type-regular {
  background: var(--warning-gradient);
  color: white;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.status-active {
  background: var(--success-gradient);
  color: white;
}

.status-used {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
}

.status-expired {
  background: var(--danger-gradient);
  color: white;
}

.date-cell {
  color: #666;
  font-size: 0.9rem;
}

.action-pill {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  color: #667eea;
}

.score-change {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.score-positive {
  background: linear-gradient(135deg, rgba(67, 233, 123, 0.2) 0%, rgba(56, 249, 215, 0.2) 100%);
  color: #43e97b;
}

.score-negative {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(238, 90, 111, 0.2) 100%);
  color: #ff6b6b;
}

.score-neutral {
  background: #f0f0f0;
  color: #999;
}

/* ========================================
   ⚠️ WARNING ALERT
   ======================================== */

.alert-warning-modern {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 184, 0, 0.1) 100%);
  border: none;
  border-left: 4px solid #ffd93d;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

/* ========================================
   ❌ NOT FOUND CARD
   ======================================== */

.not-found-card {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.not-found-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 111, 0.1) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.not-found-card h3 {
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-size: 2rem;
}

.not-found-card p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-back-modern {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-back-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  color: white;
}

/* ========================================
   🎬 COPY NOTIFICATION ANIMATIONS
   ======================================== */

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* ========================================
   🔄 LOADING STATE
   ======================================== */

.search-btn-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.search-btn-modern .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   💡 ENHANCED COPYABLE ELEMENTS
   ======================================== */

.copyable {
  position: relative;
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.copyable:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  transform: scale(1.05);
}

.copyable::before {
  content: '📋';
  position: absolute;
  right: -25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
}

.copyable:hover::before {
  opacity: 0.7;
}

.copyable:active {
  transform: scale(0.95);
}

/* ========================================
   🎯 SMOOTH SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-indicator.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* ========================================
   🔍 SEARCH INPUT ENHANCEMENTS
   ======================================== */

.search-input-field:invalid {
  border-color: #ff6b6b;
}

.search-input-field:valid {
  border-color: #43e97b;
}

.search-input-field:focus:invalid {
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.search-input-field:focus:valid {
  box-shadow: 0 0 0 4px rgba(67, 233, 123, 0.1);
}

/* ========================================
   📊 DATA SKELETON LOADER (for future use)
   ======================================== */

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 20px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-title {
  height: 30px;
  width: 60%;
  margin-bottom: 15px;
  border-radius: 6px;
}

.skeleton-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* ========================================
   📱 RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .user-info-hero {
    padding: 30px 20px;
  }
  
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .search-form-modern {
    flex-direction: column;
  }
  
  .search-input-wrapper {
    flex-direction: column;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons-row {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  
  .user-card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .table-container-modern {
    padding: 15px;
  }
  
  .user-info-table-modern {
    font-size: 0.85rem;
  }
  
  .user-info-table-modern thead th,
  .user-info-table-modern tbody td {
    padding: 10px 8px;
  }
}

/* ========================================
   🌐 FONT INHERITANCE
   ======================================== */

.user-info-container,
.user-card-modern,
.table-modern-card,
.search-modern-card,
.alert-info-modern {
  font-family: inherit !important;
}

code,
.code-badge {
  font-family: 'Courier New', Consolas, Monaco, monospace !important;
}
