/* FCC Report Management System - Custom Theme */
/* Color Palette: Blue, Black, White, Red, Green */

:root {
  /* Primary Colors */
  --fcc-primary: #1e40af;      /* Deep Blue */
  --fcc-primary-light: #3b82f6; /* Light Blue */
  --fcc-primary-dark: #1e3a8a;  /* Dark Blue */
  
  /* Secondary Colors */
  --fcc-secondary: #374151;     /* Dark Gray/Black */
  --fcc-secondary-light: #6b7280; /* Light Gray */
  
  /* Accent Colors */
  --fcc-success: #16a34a;       /* Green */
  --fcc-success-light: #22c55e; /* Light Green */
  --fcc-danger: #dc2626;        /* Red */
  --fcc-danger-light: #ef4444;  /* Light Red */
  --fcc-warning: #d97706;       /* Orange */
  --fcc-info: #0ea5e9;          /* Info Blue */
  
  /* Neutral Colors */
  --fcc-white: #ffffff;
  --fcc-black: #000000;
  --fcc-gray-50: #f9fafb;
  --fcc-gray-100: #f3f4f6;
  --fcc-gray-200: #e5e7eb;
  --fcc-gray-300: #d1d5db;
  --fcc-gray-400: #9ca3af;
  --fcc-gray-500: #6b7280;
  --fcc-gray-600: #4b5563;
  --fcc-gray-700: #374151;
  --fcc-gray-800: #1f2937;
  --fcc-gray-900: #111827;
}

/* Global Styles */
body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--fcc-gray-50);
  color: var(--fcc-gray-800);
}

/* Header Styles */
.pc-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 2px solid var(--fcc-gray-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.pc-header .container-fluid {
  padding: 0.75rem 1.5rem;
  min-height: 70px;
}

.pc-header .row {
  min-height: 70px;
  margin: 0;
}

.pc-header .col-auto {
  display: flex;
  align-items: center;
}

.pc-header .pc-head-link {
  color: var(--fcc-gray-700) !important;
  transition: all 0.3s ease;
  padding: 0.5rem !important;
  border: none !important;
  background: transparent !important;
  text-decoration: none !important;
  border-radius: 6px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px;
  min-height: 40px;
}

.pc-header .pc-head-link:hover {
  color: var(--fcc-primary) !important;
  background-color: rgba(59, 130, 246, 0.1) !important;
  transform: translateY(-1px);
}

.pc-header .pc-head-link i {
  font-size: 1.2rem;
}


/* Profile Button Styles */
.profile-btn {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%) !important;
  border: none !important;
  color: var(--fcc-white) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  min-height: 40px;
  font-weight: 500;
}

.profile-btn:hover {
  background: linear-gradient(135deg, var(--fcc-primary-dark) 0%, var(--fcc-primary) 100%) !important;
  color: var(--fcc-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.profile-btn i {
  font-size: 1.1rem;
  margin-right: 0.25rem;
}

.profile-btn span {
  font-weight: 500;
  white-space: nowrap;
}

/* Dropdown Styles */
.dropdown-menu {
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 0.5rem 0 !important;
  min-width: 120px;
  transition: none !important;
  animation: none !important;
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: white !important;
}

.dropdown-menu.show {
  display: block !important;
}

#profileDropdownMenu {
  display: none !important;
}

#profileDropdownMenu.show {
  display: block !important;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-item {
  padding: 0.75rem 1rem !important;
  color: var(--fcc-gray-700) !important;
  font-weight: 500;
  text-decoration: none !important;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: var(--fcc-primary) !important;
}

.dropdown-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Ensure buttons are always visible and properly aligned */
.pc-header .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Gap between notification and profile buttons */
.pc-header .gap-2 {
  gap: 0.5rem !important;
}

@media (max-width: 768px) {
  .pc-header .gap-2 {
    gap: 0.25rem !important;
  }
}

@media (max-width: 480px) {
  .pc-header .gap-2 {
    gap: 0.25rem !important;
  }
}

/* Sidebar Styles */
.pc-sidebar {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-right: 2px solid var(--fcc-gray-200);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.pc-sidebar .b-brand {
  color: var(--fcc-primary) !important;
  font-weight: 700;
  text-decoration: none;
}

.pc-sidebar .pc-link {
  color: var(--fcc-gray-600) !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 8px;
}

.pc-sidebar .pc-link:hover {
  color: var(--fcc-primary) !important;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  transform: translateX(5px);
}

.pc-sidebar .pc-link.active {
  color: var(--fcc-primary) !important;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  font-weight: 600;
  transform: translateX(5px);
}

.pc-sidebar .pc-item.active {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  margin: 2px 8px;
  border-left: 4px solid var(--fcc-primary);
}

.pc-sidebar .pc-item.active .pc-link {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.pc-sidebar .pc-item.active .pc-micon {
  color: var(--fcc-primary) !important;
  transform: scale(1.1);
}

.pc-sidebar .pc-item.active .pc-mtext {
  color: var(--fcc-primary) !important;
  font-weight: 600;
}

.pc-sidebar .pc-caption {
  color: var(--fcc-gray-500) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

/* Card Styles */
.card {
  border: 1px solid var(--fcc-gray-200);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: var(--fcc-white);
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-header {
  background: linear-gradient(135deg, var(--fcc-gray-50) 0%, var(--fcc-white) 100%);
  border-bottom: 2px solid var(--fcc-gray-200);
  border-radius: 12px 12px 0 0 !important;
  padding: 1.5rem;
}

.card-header h5 {
  color: var(--fcc-gray-800);
  font-weight: 700;
  margin: 0;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--fcc-primary-dark) 0%, var(--fcc-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--fcc-success) 0%, var(--fcc-success-light) 100%);
  border: none;
  border-radius: 8px;
  color: var(--fcc-white);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(135deg, #15803d 0%, var(--fcc-success) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, var(--fcc-danger) 0%, var(--fcc-danger-light) 100%);
  border: none;
  border-radius: 8px;
  color: var(--fcc-white);
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #b91c1c 0%, var(--fcc-danger) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--fcc-primary);
  color: var(--fcc-primary);
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--fcc-primary);
  color: var(--fcc-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-outline-secondary {
  border: 2px solid var(--fcc-gray-400);
  color: var(--fcc-gray-600);
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: var(--fcc-gray-600);
  color: var(--fcc-white);
  transform: translateY(-2px);
}

/* Badge Styles */
.badge {
  border-radius: 6px;
  font-weight: 600;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-primary {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%) !important;
}

.bg-success {
  background: linear-gradient(135deg, var(--fcc-success) 0%, var(--fcc-success-light) 100%) !important;
}

.bg-danger {
  background: linear-gradient(135deg, var(--fcc-danger) 0%, var(--fcc-danger-light) 100%) !important;
}

.bg-warning {
  background: linear-gradient(135deg, var(--fcc-warning) 0%, #f59e0b 100%) !important;
  color: var(--fcc-white) !important;
}

.bg-info {
  background: linear-gradient(135deg, var(--fcc-info) 0%, #06b6d4 100%) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--fcc-gray-600) 0%, var(--fcc-gray-500) 100%) !important;
}

/* Table Styles */
.table {
  background: var(--fcc-white);
  border-radius: 8px;
  overflow: hidden;
}

.table thead th {
  background: linear-gradient(135deg, var(--fcc-gray-100) 0%, var(--fcc-gray-200) 100%);
  color: var(--fcc-gray-800);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: none;
  padding: 15px;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background: linear-gradient(135deg, var(--fcc-gray-50) 0%, var(--fcc-white) 100%);
  transform: scale(1.01);
}

.table tbody td {
  border: none;
  padding: 15px;
  vertical-align: middle;
}

/* Form Styles */
.form-control, .form-select {
  border: 2px solid var(--fcc-gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  background: var(--fcc-white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--fcc-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-label {
  color: var(--fcc-gray-700);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Alert Styles */
.alert {
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 500;
}

.alert-success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: var(--fcc-success);
  border-left: 4px solid var(--fcc-success);
}

.alert-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  color: var(--fcc-danger);
  border-left: 4px solid var(--fcc-danger);
}

.alert-warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: var(--fcc-warning);
  border-left: 4px solid var(--fcc-warning);
}

.alert-info {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--fcc-info);
  border-left: 4px solid var(--fcc-info);
}

/* Avatar Styles */
.avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, var(--fcc-white) 0%, var(--fcc-gray-50) 100%);
  border-bottom: 3px solid var(--fcc-primary);
  margin-bottom: 2rem;
  border-radius: 0 0 12px 12px;
}

.page-header-title h5 {
  color: var(--fcc-gray-800);
  font-weight: 700;
  margin: 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--fcc-primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--fcc-primary-dark);
}

.breadcrumb-item.active {
  color: var(--fcc-gray-600);
}

/* Statistics Cards */
.stat-card {
  background: linear-gradient(135deg, var(--fcc-white) 0%, var(--fcc-gray-50) 100%);
  border: 1px solid var(--fcc-gray-200);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.stat-icon {
  font-size: 2rem !important;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fcc-gray-600);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fcc-gray-800);
  line-height: 1.2;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card .card-body {
  padding: 1.5rem;
}

.stat-card h4 {
  color: var(--fcc-gray-800);
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}

.stat-card h6 {
  color: var(--fcc-gray-600);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Dropdown Styles */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  background: var(--fcc-white);
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s ease;
  color: var(--fcc-gray-700);
}

.dropdown-item:hover {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%);
  color: var(--fcc-white);
  transform: translateX(5px);
}

/* Pagination Styles */
.pagination .page-link {
  border: 2px solid var(--fcc-gray-200);
  color: var(--fcc-gray-700);
  padding: 10px 16px;
  margin: 0 2px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: var(--fcc-primary);
  color: var(--fcc-white);
  border-color: var(--fcc-primary);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%);
  border-color: var(--fcc-primary);
  color: var(--fcc-white);
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background: linear-gradient(135deg, var(--fcc-gray-50) 0%, var(--fcc-white) 100%);
  border-bottom: 2px solid var(--fcc-gray-200);
  border-radius: 12px 12px 0 0;
}

.modal-title {
  color: var(--fcc-gray-800);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pc-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .pc-sidebar.show {
    transform: translateX(0);
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .stat-card .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-card .stat-icon {
    font-size: 1.5rem !important;
  }
  
  /* Header responsive styles */
  .pc-header .container-fluid {
    padding: 0.5rem 1rem !important;
  }
  
  .pc-header .pc-head-link {
    padding: 0.4rem !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
  
  .pc-header .pc-head-link i {
    font-size: 1.1rem !important;
  }
  
  
  /* Profile responsive */
  .profile-btn {
    padding: 0.4rem 0.6rem !important;
    min-height: 36px !important;
  }
  
  .profile-btn i {
    font-size: 1rem !important;
  }
  
  .profile-btn span {
    display: none !important;
  }
  
  .dropdown-menu {
    min-width: 100px !important;
  }
  
  /* Table responsive improvements */
  .table th, .table td {
    padding: 0.75rem 0.5rem;
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .pc-header .container-fluid {
    padding: 0.25rem 0.75rem !important;
  }
  
  .pc-header .pc-head-link {
    padding: 0.25rem !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
  
  .pc-header .pc-head-link i {
    font-size: 1rem !important;
  }
  
  
  /* Profile responsive */
  .profile-btn {
    padding: 0.25rem 0.5rem !important;
    min-height: 32px !important;
  }
  
  .profile-btn i {
    font-size: 0.9rem !important;
  }
  
  .profile-btn span {
    display: none !important;
  }
  
  .dropdown-menu {
    min-width: 90px !important;
  }
  
  .stat-card .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-card .stat-label {
    font-size: 0.65rem;
  }
  
  .stat-card .stat-icon {
    font-size: 1.25rem !important;
  }
  
  .card-header h5 {
    font-size: 1rem;
  }
  
  .table-responsive {
    font-size: 0.875rem;
  }
  
  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pc-header {
    min-height: 60px;
  }
  
  .pc-header .container-fluid {
    padding: 0.25rem 0.5rem !important;
    min-height: 60px !important;
  }
  
  .pc-header .row {
    min-height: 60px !important;
  }
  
  .pc-header .pc-head-link {
    padding: 0.25rem !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }
  
  .pc-header .pc-head-link i {
    font-size: 0.9rem !important;
  }
  
  
  /* Profile responsive */
  .profile-btn {
    padding: 0.25rem 0.4rem !important;
    min-height: 28px !important;
  }
  
  .profile-btn i {
    font-size: 0.8rem !important;
  }
  
  .profile-btn span {
    display: none !important;
  }
  
  .dropdown-menu {
    min-width: 80px !important;
    font-size: 0.875rem !important;
  }
  
  .stat-card .card-body {
    padding: 1rem;
  }
  
  .stat-card .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-card .stat-icon {
    font-size: 1.1rem !important;
  }
  
  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Mobile table improvements */
  .table th, .table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }
  
  .table th {
    font-size: 0.7rem;
  }
  
  /* Mobile card improvements */
  .card-body {
    padding: 1rem 0.75rem;
  }
  
  .card-header {
    padding: 0.75rem;
  }
}

/* Additional responsive improvements */
@media (max-width: 1200px) {
  .col-xl-3 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .col-md-6 {
    margin-bottom: 1rem;
  }
  
  .col-md-8, .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

/* Ensure proper spacing on all devices */
.pc-container {
  padding: 1rem;
}

@media (max-width: 768px) {
  .pc-container {
    padding: 0.5rem;
  }
  
  .page-header {
    margin-bottom: 1rem;
  }
  
  .row {
    margin: 0 -0.5rem;
  }
  
  .row > * {
    padding: 0 0.5rem;
  }
}

/* Fix table responsiveness */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .table-responsive {
    font-size: 0.8rem;
  }
  
  .table th, .table td {
    padding: 0.5rem;
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* Mobile-first responsive utilities */
@media (max-width: 767px) {
  .d-mobile-none {
    display: none !important;
  }
  
  .d-mobile-block {
    display: block !important;
  }
  
  .d-mobile-flex {
    display: flex !important;
  }
  
  .text-mobile-center {
    text-align: center !important;
  }
  
  .text-mobile-left {
    text-align: left !important;
  }
}

/* Ensure proper mobile layout */
@media (max-width: 576px) {
  .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  
  .col-12 {
    margin-bottom: 0.75rem;
  }
  
  /* Mobile card stacking */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Mobile button improvements */
  .btn-group .btn {
    border-radius: 0.375rem !important;
  }
  
  .btn-group .btn:first-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  
  .btn-group .btn:last-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}

/* Prevent header overlap and ensure proper spacing */
.pc-container {
  margin-top: 0 !important;
  padding-top: 1rem;
}

/* Ensure header stays on top */
.pc-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* Fix any potential overflow issues */
.header-wrapper {
  overflow: visible !important;
  white-space: nowrap;
}

.header-right {
  overflow: visible !important;
}

/* Ensure proper spacing between notification and profile */
.pc-h-item.me-2 {
  margin-right: 0.5rem !important;
}

@media (max-width: 768px) {
  .pc-h-item.me-2 {
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 480px) {
  .pc-h-item.me-2 {
    margin-right: 0.25rem !important;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--fcc-gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-primary-light) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--fcc-primary-dark) 0%, var(--fcc-primary) 100%);
}
