/* Hero Section - Modern Gradient */
.page-hero-score {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content-score {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-icon-wrapper i {
  font-size: 3rem;
}

.hero-title-score {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.hero-subtitle-score {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 10%;
  animation-delay: -5s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Modern Filter Card */
.modern-filter-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.filter-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.filter-title {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.export-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.export-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

.modern-filter-form {
  display: block;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.filter-input-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.modern-input {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.modern-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-input-wrapper {
  position: relative;
}

.search-icon-input {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.modern-input.with-icon {
  padding-left: 45px;
}

.filter-btn-group {
  display: flex;
  align-items: flex-end;
}

.apply-filter-btn {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.apply-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Modern Table Card */
.modern-table-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.table-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.table-title {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Ultra Modern Table */
.modern-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
}

.ultra-modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.ultra-modern-table thead tr {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.ultra-modern-table thead th {
  padding: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #495057;
  border: none;
}

.ultra-modern-table thead th:first-child {
  border-radius: 12px 0 0 12px;
}

.ultra-modern-table thead th:last-child {
  border-radius: 0 12px 12px 0;
}

.th-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultra-modern-table tbody tr {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.ultra-modern-table tbody tr:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.ultra-modern-table tbody td {
  padding: 20px 16px;
  border: none;
  vertical-align: middle;
}

.ultra-modern-table tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
}

.ultra-modern-table tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
}

/* Table Cell Styles */
.datetime-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.date-part {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
}

.time-part {
  font-size: 0.85rem;
  color: #6c757d;
}

.user-id-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.username-cell {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #495057;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #495057;
  border: 1px solid #e9ecef;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.score-positive {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: white;
}

.score-negative {
  background: linear-gradient(135deg, #ee0979, #ff6a00);
  color: white;
}

.score-neutral {
  background: #e9ecef;
  color: #6c757d;
}

/* Modern Pagination */
.modern-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 20px;
}

.pagination-info-left {
  color: #6c757d;
  font-size: 0.9rem;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

.pagination-numbers {
  display: flex;
  gap: 6px;
}

.pagination-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0 12px;
}

.pagination-number:hover {
  background: #f8f9fa;
  border-color: #667eea;
  color: #667eea;
}

.pagination-number.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination-dots {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-score {
    font-size: 2rem;
  }
  
  .hero-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .hero-icon-wrapper i {
    font-size: 2rem;
  }
  
  .filter-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pagination-controls {
    justify-content: center;
  }
  
  .ultra-modern-table {
    font-size: 0.85rem;
  }
  
  .ultra-modern-table tbody td {
    padding: 12px 8px;
  }
}
