body {
  background: #fff !important;
}
.fade-in { animation: fadeIn .6s ease-in; }
@keyframes fadeIn { from {opacity:0; transform:translateY(10px);} to {opacity:1; transform:none;} }

.btn-gradient {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  box-shadow: 0 0 10px rgba(0,123,255,.4);
  transform: translateY(-2px);
}

.social-links a {
  color: #495057;
  margin: 0 8px;
  font-size: 1.4rem;
  transition: all .3s;
}
.social-links a:hover {
  color: #007bff;
  transform: scale(1.15);
}

.table {
  border-radius: 0.75rem;
  overflow: hidden;
}
.table-group {
  background: #f8f9fa !important;
  font-size: 1rem;
  letter-spacing: .3px;
  font-weight: 600;
}

.well {
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 10px 15px;
  margin-top: 8px;
  font-size: 0.92rem;
  color: #333;
}
.well-sm {
  padding: 8px 12px;
  font-size: 0.9rem;
}
.com {
  background: #f5f5f5;
  border-left: 4px solid #007bff;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}