@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(57.1551724138, 88.1896551724, 227.8448275862);
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
input::placeholder, textarea::placeholder {
  color: #6c757d;
}

label {
  display: block;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #6c757d;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #ffffff;
  color: #667eea;
  border: 2px solid #667eea;
}
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secondary:hover:not(:disabled) {
  background: rgba(102, 126, 234, 0.1);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #dc3545;
  color: #ffffff;
}
.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-danger:hover:not(:disabled) {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #28a745;
  color: #ffffff;
}
.btn-success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-success:hover:not(:disabled) {
  background: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.message.success-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-left: 4px solid #28a745;
}
.message.error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-left: 4px solid #dc3545;
}
.message.warning-message {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
}
.message.info-message {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-left: 4px solid #0ea5e9;
}

.badge, .severity-badge, .status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge.badge-primary, .badge-primary.severity-badge, .badge-primary.status-badge {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}
.badge.badge-success, .badge-success.severity-badge, .badge-success.status-badge {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.badge.badge-danger, .badge-danger.severity-badge, .badge-danger.status-badge {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.badge.badge-warning, .badge-warning.severity-badge, .badge-warning.status-badge {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
}

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
}
.auth-card .back-link {
  display: inline-block;
  color: #6c757d;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.auth-card .back-link:hover {
  color: #764ba2;
}
.auth-card .auth-title {
  color: #764ba2;
  text-align: center;
  margin-bottom: 0.25rem;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e9ecef;
}
.auth-tabs .auth-tab {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.auth-tabs .auth-tab:hover {
  color: #764ba2;
}
.auth-tabs .auth-tab.active {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
  animation: fadeIn 0.5s ease ease-in;
}
.auth-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .auth-form .form-row {
    grid-template-columns: 1fr;
  }
}
.auth-form .form-group {
  margin-bottom: 1rem;
}
.auth-form .form-group label {
  display: block;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}
.auth-form .form-group input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.auth-form .form-group input:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}
.auth-form .form-group small {
  display: block;
  color: #6c757d;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.auth-info {
  background: rgba(14, 165, 233, 0.1);
  border-left: 4px solid #0ea5e9;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.auth-info p {
  margin: 0;
  color: rgb(8.2186234818, 96.8623481781, 136.7813765182);
  font-size: 0.875rem;
  line-height: 1.6;
}

.btn-full {
  width: 100%;
}

.dashboard {
  min-height: 100vh;
  background: #f8f9fa;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 300;
}
.dashboard-header .header-left .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #764ba2;
  text-decoration: none;
}
.dashboard-header .header-center {
  text-align: center;
}
.dashboard-header .header-center h1 {
  color: #764ba2;
  font-size: 1.25rem;
  margin: 0;
}
.dashboard-header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.dashboard-header .header-right .user-name {
  color: #333333;
  font-weight: 500;
}

.tabs-container {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid #e9ecef;
  z-index: 200;
}

.tabs {
  display: flex;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 2rem;
}
.tabs .tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.tabs .tab .tab-icon {
  font-size: 1.25rem;
}
.tabs .tab:hover {
  color: #764ba2;
  background: rgba(118, 75, 162, 0.05);
}
.tabs .tab.active {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

/* ==========================================
   NEW: Dashboard Wrapper with Side Ads
   ========================================== */
.dashboard-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 1rem;
  padding-top: calc(70px + 60px);
  min-height: 100vh;
  width: 100%;
  /*
  @media (max-width: 1200px) {
    grid-template-columns: 160px 1fr 160px;
    .side-ad {
        display: block;
        width: 100%;
        height: 100%;
    }
  }*/
}
.dashboard-wrapper > * {
  min-width: 0;
}
.dashboard-wrapper > .dashboard-content {
  grid-column: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  justify-self: stretch;
}
@media (max-width: 780px) {
  .dashboard-wrapper {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper > .dashboard-content {
    grid-column: 1;
    max-width: 85%;
    margin: 0 auto;
  }
}

/*
.side-ad {
  display: block;
  padding-top: $spacing-xl;
  // Added: Ensure visibility
  min-width: 100%;
  min-height: 100%;
  width: 100%;

  &.side-ad-left {
    padding-left: $spacing-md;
  }

  &.side-ad-right {
    padding-right: $spacing-md;
  }

  .ad-sticky {
    position: sticky;
    top: calc(70px + 60px + 2rem);
    width: 100%;
  }

  .promo-card {
    background: $white;
    border: 2px dashed $border-gray;
    border-radius: $border-radius-lg;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    // Added: Ensure content visibility
    width: 100%;
  }

  .promo-placeholder {
    padding: $spacing-lg;
    text-align: center;
    color: $text-muted;
    // Added: Ensure visibility
    display: block;

    span {
      font-size: 2rem;
      display: block;
      margin-bottom: $spacing-sm;
    }

    p {
      margin: 0;
      font-size: $font-size-sm;
    }
  }
}*/
.dashboard-content {
  padding: 2rem;
  width: 100%;
  min-width: 0;
}
@media (max-width: 1200px) {
  .dashboard-content {
    max-width: 85%;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease ease-in;
}

.content-header {
  margin-bottom: 2rem;
}
.content-header h2 {
  color: #764ba2;
  margin-bottom: 0.5rem;
}
.content-header p {
  color: #6c757d;
  margin: 0;
}

.welcome-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #dee2e6;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .welcome-card {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
}
.welcome-card .welcome-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(118, 75, 162, 0.03);
  border-bottom: 1px solid rgba(118, 75, 162, 0.08);
}
@media (max-width: 768px) {
  .welcome-card .welcome-card-header {
    flex-direction: column;
    gap: 1rem;
  }
}
.welcome-card .welcome-info h2 {
  color: #764ba2;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}
.welcome-card .welcome-info p {
  color: #6c757d;
  margin: 0;
  font-size: 0.875rem;
}
.welcome-card .welcome-stats {
  display: flex;
  gap: 2rem;
}
.welcome-card .welcome-stats .stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
}
.welcome-card .welcome-stats .stat-item .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #764ba2;
  line-height: 1;
}
.welcome-card .welcome-stats .stat-item .stat-label {
  color: #6c757d;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.quick-actions {
  margin-bottom: 1.5rem;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
}
.quick-actions h3 {
  color: #333333;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
}
.quick-actions .action-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .quick-actions .action-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}
.quick-actions .action-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #dee2e6;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 120px;
}
.quick-actions .action-card:hover {
  border-color: #764ba2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.quick-actions .action-card:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.quick-actions .action-card .action-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.quick-actions .action-card .action-text {
  font-weight: 600;
  color: #333333;
  text-align: center;
  font-size: 0.875rem;
}

.search-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.search-section h3 {
  color: #333333;
  margin-bottom: 0.5rem;
}
.search-section p {
  color: #6c757d;
  margin-bottom: 1rem;
}
.search-section .search-form-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .search-section .search-form-inline {
    flex-direction: column;
  }
}
.search-section .search-form-inline .search-input-inline {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
}
.search-section .search-form-inline .search-input-inline:focus {
  outline: none;
  border-color: #764ba2;
}
.search-section .search-results-inline {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

/*
.promo-section {
    .promo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: $spacing-md;

        @include tablet {
            grid-template-columns: 1fr;
        }
    }

    .promo-card {
        background: $white;
        border: 2px dashed $border-gray;
        border-radius: $border-radius-lg;
        overflow: hidden;

        .promo-placeholder {
            padding: $spacing-xxl;
            text-align: center;
            color: $text-muted;

            span {
                font-size: 3rem;
                display: block;
                margin-bottom: $spacing-sm;
            }
        }
    }
}*/
.reports-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .reports-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .reports-summary {
    grid-template-columns: 1fr;
  }
}
.reports-summary .summary-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.reports-summary .summary-card .summary-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #764ba2;
}
.reports-summary .summary-card .summary-label {
  color: #6c757d;
  font-size: 0.875rem;
}

.table-container {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
}
.reports-table thead {
  background: #f8f9fa;
}
.reports-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #6c757d;
  border-bottom: 2px solid #e9ecef;
  font-size: 0.85rem;
  white-space: nowrap;
}
.reports-table thead th.checkbox-col {
  width: 40px;
  text-align: center;
}
.reports-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.15s ease;
}
.reports-table tbody tr:hover {
  background: rgba(118, 75, 162, 0.05);
}
.reports-table tbody tr:nth-child(even) {
  background: rgba(248, 249, 250, 0.5);
}
.reports-table tbody tr:nth-child(even):hover {
  background: rgba(118, 75, 162, 0.08);
}
.reports-table tbody td {
  padding: 1rem 1.5rem;
  color: #6c757d;
  vertical-align: middle;
  font-size: 0.875rem;
}
.reports-table tbody td.checkbox-col {
  text-align: center;
  padding: 0.5rem;
}
.reports-table tbody td.business-name {
  font-weight: 500;
  color: #333333;
}
.reports-table tbody td.actions-col {
  white-space: nowrap;
}
.reports-table .action-buttons {
  display: flex;
  gap: 0.25rem;
}
.reports-table .action-buttons .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.bulk-actions {
  padding: 1rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  text-align: right;
  border-radius: 0 0 12px 12px;
}
.bulk-actions .bulk-export-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #764ba2;
}

.btn-outline {
  background: transparent;
  border: 1px solid #764ba2;
  color: #764ba2;
}
.btn-outline:hover:not(:disabled) {
  background: rgba(118, 75, 162, 0.1);
}
.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #6c757d;
  color: #6c757d;
}

@media (max-width: 768px) {
  .table-container {
    overflow-x: auto;
  }
  .reports-table {
    min-width: 700px;
  }
}
.report-details-modal-content {
  max-width: 750px;
}

.report-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-section {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}
.detail-section h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #764ba2;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.detail-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.detail-grid .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-grid .detail-item label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6c757d;
  margin: 0;
}
.detail-grid .detail-item span {
  font-size: 0.875rem;
  color: #333333;
}

.detail-section-row {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.detail-section-left {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 200px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.detail-list .detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.detail-list .detail-item label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.detail-list .detail-item span {
  font-size: 0.875rem;
  color: #333333;
}

.detail-section-right {
  flex: 1;
  min-width: 0;
}

.description-container {
  height: 100%;
  min-height: 120px;
}

.description-text {
  margin: 0;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  word-wrap: break-word;
}

@media (max-width: 576px) {
  .report-details-modal-content {
    max-width: 95%;
  }
  .detail-section-row {
    flex-direction: column;
  }
  .detail-section-left {
    max-width: 100%;
    min-width: 100%;
  }
  .detail-section-right {
    border-left: none;
    border-top: 3px solid #764ba2;
  }
  .detail-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.modal-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

#disputeForm .form-group {
  margin-bottom: 1.5rem;
}
#disputeForm .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}
#disputeForm .form-group select,
#disputeForm .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
#disputeForm .form-group select:focus,
#disputeForm .form-group textarea:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}
#disputeForm .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
#disputeForm .form-group small {
  display: block;
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.8rem;
}

.bulk-actions {
  padding: 1rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  text-align: right;
  border-radius: 0 0 12px 12px;
}
.bulk-actions .bulk-export-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #764ba2;
}

.btn-outline {
  background: transparent;
  border: 1px solid #764ba2;
  color: #764ba2;
}
.btn-outline:hover:not(:disabled) {
  background: rgba(118, 75, 162, 0.1);
}
.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #6c757d;
  color: #6c757d;
}

@media (max-width: 768px) {
  .table-container {
    overflow-x: auto;
  }
  .reports-table {
    min-width: 700px;
  }
}
.disputes-info {
  margin-bottom: 2rem;
}
.disputes-info .info-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: rgba(14, 165, 233, 0.05);
  border-left: 4px solid #0ea5e9;
}
.disputes-info .info-box h4 {
  color: rgb(8.2186234818, 96.8623481781, 136.7813765182);
  margin-bottom: 1rem;
}
.disputes-info .info-box ol {
  margin: 0;
  padding-left: 1.5rem;
  color: rgb(11.1093117409, 130.9311740891, 184.8906882591);
}
.disputes-info .info-box ol li {
  margin-bottom: 0.5rem;
}
.disputes-info .info-box ol li:last-child {
  margin-bottom: 0;
}

.disputes-section {
  margin-bottom: 2rem;
}
.disputes-section h3 {
  color: #333333;
  margin-bottom: 1rem;
}

.disputes-list .dispute-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border-left: 4px solid #ffc107;
}
.disputes-list .dispute-card.dispute-resolved {
  border-left-color: #28a745;
}
.disputes-list .dispute-card.dispute-rejected {
  border-left-color: #dc3545;
}
.disputes-list .dispute-card .dispute-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.disputes-list .dispute-card .dispute-header .dispute-report {
  font-weight: 600;
  color: #333333;
}
.disputes-list .dispute-card .dispute-header .dispute-status {
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
}
.disputes-list .dispute-card .dispute-details {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.disputes-list .dispute-card .dispute-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid #e9ecef;
}
.disputes-list .dispute-card .dispute-footer .dispute-date {
  color: #6c757d;
  font-size: 0.875rem;
}

.file-dispute-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: rgba(255, 193, 7, 0.05);
}
.file-dispute-section h3 {
  color: #333333;
  margin-bottom: 0.5rem;
}
.file-dispute-section p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.disputable-reports .disputable-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.disputable-reports .disputable-item .disputable-info .disputable-business {
  font-weight: 600;
  color: #333333;
}
.disputable-reports .disputable-item .disputable-info .disputable-meta {
  color: #6c757d;
  font-size: 0.875rem;
}

.disputes-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.disputes-table thead {
  background: #f8f9fa;
}
.disputes-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
  border-bottom: 2px solid #e9ecef;
}
.disputes-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.15s ease;
}
.disputes-table tbody tr:hover {
  background: rgba(118, 75, 162, 0.03);
}
.disputes-table tbody tr:last-child {
  border-bottom: none;
}
.disputes-table tbody td {
  padding: 1rem;
  color: #333333;
  font-size: 0.875rem;
  vertical-align: middle;
}
.disputes-table .status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
}
.disputes-table .status-badge.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: rgb(185.5, 139.125, 0);
}
.disputes-table .status-badge.status-review {
  background: rgba(14, 165, 233, 0.15);
  color: rgb(9.6639676113, 113.8967611336, 160.8360323887);
}
.disputes-table .status-badge.status-resolved {
  background: rgba(40, 167, 69, 0.15);
  color: rgb(25.2173913043, 105.2826086957, 43.5);
}
.disputes-table .status-badge.status-rejected {
  background: rgba(220, 53, 69, 0.15);
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266);
}

@media (max-width: 768px) {
  .disputes-section .table-container {
    overflow-x: auto;
  }
  .disputes-section .disputes-table {
    min-width: 600px;
  }
}
.settings-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.settings-section h3 {
  color: #764ba2;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.profile-info-card .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .profile-info-card .info-grid {
    grid-template-columns: 1fr;
  }
}
.profile-info-card .info-item label {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
.profile-info-card .info-item span {
  font-weight: 600;
  color: #333333;
}
.profile-info-card .profile-actions {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.security-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .security-options {
    flex-direction: column;
  }
}

.settings-note {
  color: #6c757d;
  margin: 0;
}

.readonly-field {
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  color: #333333;
  font-weight: 500;
}

.field-note {
  display: block;
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.8rem;
  font-style: italic;
}

#editProfileForm .form-group {
  margin-bottom: 1.5rem;
}
#editProfileForm .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}
#editProfileForm .form-group input[type=email],
#editProfileForm .form-group input[type=tel] {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
#editProfileForm .form-group input[type=email]:focus,
#editProfileForm .form-group input[type=tel]:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

.badge, .status-badge, .severity-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.severity-badge.severity-high {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.severity-badge.severity-medium {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
}
.severity-badge.severity-low {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.status-badge.status-active {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.status-badge.status-pending {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
}
.status-badge.status-resolved {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.status-badge.status-disputed {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.loading-message {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

.empty-state {
  text-align: center;
  padding: 3rem;
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.empty-state h3 {
  color: #333333;
  margin-bottom: 0.5rem;
}
.empty-state p {
  color: #6c757d;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease ease-in;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
}
.modal-header h3 {
  margin: 0;
  color: #764ba2;
}
.modal-header .modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.modal-header .modal-close:hover {
  color: #dc3545;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .dashboard-header {
    padding: 0 1rem;
    grid-template-columns: auto 1fr auto;
  }
  .dashboard-header .header-center h1 {
    font-size: 1rem;
  }
  .dashboard-header .header-right .user-name {
    display: none;
  }
  .tabs-container {
    overflow-x: auto;
  }
  .tabs {
    padding: 0 1rem;
  }
  .tabs .tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .tabs .tab .tab-text {
    display: none;
  }
  .tabs .tab .tab-icon {
    font-size: 1.5rem;
  }
  .dashboard-content {
    padding: calc(130px + 1rem) 1rem 1rem;
  }
}
@media (max-width: 480px) {
  .auth-container {
    padding: 1rem;
  }
  .auth-card {
    padding: 1.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */
