:root {
  /* Orange Brand Colors */
  --primary-color: #ff7900; /* Original Orange orange */
  --primary-dark: #cc6100;
  --primary-light: #ff9533;
  --primary-hover: #e66d00;

  /* Secondary Colors */
  --secondary-color: #333333;
  --secondary-light: #666666;
  --secondary-dark: #000000;

  /* Header/Sidebar Color (for corporate branding) */
  --header-color: var(--secondary-color);

  /* Basic Neutrals */
  --light-color: #f5f5f5;
  --dark-color: #333333;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #E9ECEF;

  /* Status Colors - Modern and Subtle */
  --success-color: #10B981;
  --danger-color: #EF4444;
  --warning-color: #F59E0B;
  --info-color: #3B82F6;

  /* Sophisticated Grays */
  --gray-50: #FAFBFC;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --gray-light: #F8F9FA;
  --gray-medium: #E9ECEF;
  --gray-dark: #495057;
  --white: #FFFFFF;

  /* Accent Colors for Variety */
  --accent-blue: #3498DB;
  --accent-teal: #16A085;
  --accent-purple: #9B59B6;
  --sidebar-width: 250px;
  --header-height: 60px;
  --font-family:
    "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  --font-weight-normal: 300; /* Weight para Light */

  /* Tamaños de fuente mejorados */
  --font-size-base: 0.9rem;
  --font-size-sm: 0.8rem;
  --font-size-xs: 0.7rem;
  --font-size-lg: 1rem;
  --font-size-xl: 1.2rem;
  --font-size-xxl: 1.5rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--gray-light);
  color: var(--dark-color);
  min-height: 100vh;
  display: flex;
  font-size: var(--font-size-base);
  line-height: 1.5;
}

body,
input,
button,
select,
textarea {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
}

/* Sidebar styles */
.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background: linear-gradient(180deg, var(--header-color) 0%, color-mix(in srgb, var(--header-color) 80%, black) 100%);
  color: var(--white);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.sidebar-header .logo {
  font-size: 1.7rem;
  font-weight: normal;
  color: var(--primary-color);
  white-space: nowrap;
}

.sidebar-menu {
  padding: 15px 0;
}

.sidebar-menu-item {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: var(--font-size-base);
  cursor: pointer;
  border-radius: 0 25px 25px 0;
  margin: 2px 0;
  position: relative;
}

.sidebar-menu-item i:not(.dropdown-icon) {
  width: 20px;
  text-align: center;
  margin-right: 12px;
  font-size: 1.1rem;
}

.sidebar-menu-item .dropdown-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.sidebar-menu-item:hover {
  background: linear-gradient(90deg, rgba(255, 140, 66, 0.15) 0%, transparent 100%);
  color: var(--white);
  text-decoration: none;
  transform: translateX(5px);
}

.sidebar-menu-item:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 0 2px 2px 0;
}

.sidebar-menu-item.active {
  background: linear-gradient(90deg, rgba(255, 140, 66, 0.2) 0%, transparent 100%);
  color: var(--white);
  transform: translateX(8px);
}

.sidebar-menu-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 0 2px 2px 0;
}

.sidebar-menu-item i {
  width: 20px;
  text-align: center;
  margin-right: 12px;
  font-size: 1.1rem;
}

.sidebar-menu-item.open .dropdown-icon {
  transform: rotate(180deg);
}

.sidebar-submenu {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: none; /* Añadimos esta línea */
  background-color: #1a1a1a;
}

.sidebar-menu-item.open + .sidebar-submenu {
  max-height: 500px;
  display: block; /* Añadimos esta línea */
}

.sidebar-submenu-item {
  padding: 12px 10px 12px 35px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-submenu-item i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.sidebar-submenu-item:hover {
  color: var(--white);
  background-color: #222222;
}

.sidebar-submenu-item.active {
  color: var(--primary-color);
  font-weight: bold;
}

/* Main content styles */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* Header styles */
.header {
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #374151;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 40px;
  vertical-align: middle;
}

.role-badge {
  background-color: #ff7900;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 350;
  display: inline-block;
  text-transform: uppercase;
  margin-left: 30px;
  vertical-align: middle;
}

.user-email {
  font-size: 0.9rem;
  color: #666;
  font-weight: 350;
  vertical-align: middle;
}

.user-profile {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-profile img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Content wrapper */
.content-wrapper {
  padding: 20px;
}

/* Card styles */
.card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}

.card-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin: 0;
}

.card-body {
  padding: 20px;
}

/* Button styles */
.btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Table styles */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--gray-medium);
}

.table th {
  font-weight: 600;
  background-color: var(--gray-light);
  font-size: var(--font-size-sm);
}

.table td {
  font-size: var(--font-size-sm);
}

/* Badge styles */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: var(--font-size-xs);
}

.badge-success {
  background-color: var(--success-color);
  color: white;
}

.badge-danger {
  background-color: var(--danger-color);
  color: white;
}

.badge-received {
  background-color: #ff9433;
  color: white;
}

.badge-completed {
  background-color: var(--primary-color);
  color: white;
}

.badge-failed {
  background-color: #666666;
  color: white;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

/* Dashboard specific styles */
.stats-card {
  text-align: center;
  padding: 20px;
}

.stats-number {
  font-size: var(--font-size-xxl);
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}

.stats-label {
  font-size: var(--font-size-sm);
  color: var(--gray-dark);
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: var(--font-size-base);
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  font-size: var(--font-size-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 121, 0, 0.25);
}

/* Responsive styles */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .main-content.push {
    margin-left: var(--sidebar-width);
  }

  .toggle-sidebar {
    display: block;
  }
}

/* Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col-12 {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.col-8 {
  width: 66.6667%;
  padding: 0 10px;
  box-sizing: border-box;
}

.col-6 {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.col-4 {
  width: 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.col-3 {
  width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Transaction list */
.transaction-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.transaction-date {
  font-size: var(--font-size-xs);
  color: var(--gray-dark);
}

.transaction-type {
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.transaction-amount {
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.text-success {
  color: var(--success-color);
}

.text-danger {
  color: var(--danger-color);
}

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

/* Quick actions */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(16.66% - 15px);
  min-width: 100px;
  height: 100px;
  background-color: var(--gray-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.quick-action-item:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
}

.quick-action-item i {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  margin: 0;
  font-size: var(--font-size-lg);
}

.close {
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--gray-medium);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .col-4,
  .col-6,
  .col-8 {
    width: 100%;
  }

  .quick-action-item {
    width: calc(33.33% - 15px);
  }
}

/* Estilos específicos para cada tipo de usuario */
.company-type-operator .operator-specific {
  display: block;
}

.company-type-aggregator .aggregator-specific {
  display: block;
}

.company-type-enterprise .enterprise-specific {
  display: block;
}

.company-type-developer .developer-specific {
  display: block;
}

/* Ocultar elementos específicos por defecto */
.operator-specific,
.aggregator-specific,
.enterprise-specific,
.developer-specific {
  display: none;
}

/* Estilo para el badge de tipo de usuario */
#userType {
  display: none;
  background-color: var(--primary-color);
  color: white;
  font-size: var(--font-size-xs);
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
}

.text-muted {
  font-size: var(--font-size-xs);
  color: var(--gray-dark);
}

/* Mejora para títulos de sección */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

/* =============================================================================
   ANALYTICS DASHBOARD STYLES
   ============================================================================= */

.analytics-container {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.analytics-header {
  text-align: center;
  color: white;
  margin-bottom: 15px;
}

.analytics-header h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--dark-color);
}

.analytics-header p {
  font-size: 1.2rem;
  font-family: var(--font-family);
  color: var(--gray-dark);
}

/* Executive Table Styles - Using Divs */
.executive-table-container {
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-table {
  width: 100%;
  font-family: "Helvetica", "Arial", sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.table-row {
  display: flex;
  width: 100%;
}

.table-cell {
  flex: 1;
  padding: 8px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  font-family: "Helvetica", "Arial", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-row .empty-header {
  background: white;
  flex: 1;
}

.header-row .header-cell {
  background: var(--primary-color);
  color: white;
  font-weight: 500;
  flex: 1;
}

.data-row:nth-child(odd) {
  background-color: rgba(255, 121, 0, 0.1);
}

.data-row:nth-child(even) {
  background-color: rgba(255, 121, 0, 0.05);
}

.data-row .metric-cell {
  background-color: rgba(255, 121, 0, 0.15);
  text-align: left;
  font-weight: 500;
  justify-content: flex-start;
}

.charts-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.chart-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.chart-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 15px;
  text-align: center;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-button:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.real-time-indicator {
  display: inline-flex;
  align-items: center;
  background: var(--success-color);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-left: 10px;
  font-family: var(--font-family);
}

.real-time-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #90ff90;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.last-updated {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 30px;
  font-size: 0.9rem;
  font-family: var(--font-family);
}

/* Period Selector */
.period-selector {
  margin-top: 20px;
  text-align: center;
}

.period-btn {
  background: white;
  color: var(--dark-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  transition: all 0.3s ease;
}

.period-btn:hover {
  background: var(--primary-color);
  color: white;
}

.period-btn.active {
  background: var(--primary-color);
  color: white;
}
/* Fondo gris para todo el proyecto */
body {
  background-color: #f0f0f0 !important;
}

.content-wrapper,
.main-content {
  background-color: #f0f0f0 !important;
}

.card {
  background-color: white !important;
  border: 1px solid #dee2e6 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.form-control {
  background-color: white !important;
  border: 1px solid #ced4da !important;
}

.form-control:focus {
  background-color: white !important;
  border-color: #ff7900 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 121, 0, 0.25) !important;
}

/* Títulos naranjas para las tarjetas */
.card-header h5 {
  color: #ff7900 !important;
}

.card-header h5 i {
  color: #ff7900 !important;
}

/* Hacer que la vista previa del móvil sea sticky */
.campaign-manager .col-4 {
  position: sticky;
  top: 120px; /* Más espacio desde arriba */
  height: fit-content;
  align-self: flex-start;
}

/* Asegurar que el contenedor principal permita sticky */
.campaign-manager .row {
  align-items: flex-start;
}

/* =============================================================================
   CONTACT MANAGER STYLES
   ============================================================================= */

.contact-management-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header with tabs */
.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-medium);
}

.contact-tabs {
  display: flex;
  gap: 0;
}

.contact-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--gray-dark);
  cursor: pointer;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.contact-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background-color: rgba(255, 121, 0, 0.05);
}

.contact-tab:hover:not(.active) {
  color: var(--primary-dark);
  background-color: rgba(255, 121, 0, 0.03);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-filter,
.btn-options,
.btn-new-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--gray-medium);
  background-color: var(--white);
  color: var(--gray-dark);
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.btn-new-contact {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-new-contact:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-filter:hover,
.btn-options:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.value-selector select {
  padding: 8px 12px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--gray-dark);
  font-size: var(--font-size-sm);
  min-width: 150px;
}

/* Active filters */
.active-filters {
  padding: 10px 20px;
  background-color: rgba(255, 121, 0, 0.05);
  border-bottom: 1px solid var(--gray-medium);
}

.filter-item {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: var(--font-size-xs);
  margin-right: 8px;
}

.remove-filter {
  background: none;
  border: none;
  color: var(--white);
  margin-left: 6px;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.remove-filter:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Contacts table */
.contacts-table-container {
  overflow-x: auto;
  background-color: var(--white);
}

.contacts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.contacts-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.contacts-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--gray-medium);
  vertical-align: middle;
}

.contact-row:hover {
  background-color: rgba(255, 121, 0, 0.05);
}

.empty-state td {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-dark);
}

.empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.empty-content i {
  font-size: 3rem;
  color: var(--gray-medium);
}

.empty-content p {
  margin: 0;
  font-size: var(--font-size-base);
}

.btn-import {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.btn-import:hover {
  background-color: var(--primary-dark);
}

/* Tags in table */
.tags-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: var(--font-size-xs);
  font-weight: 500;
}

/* Opt-out status */
.opt-out-status.opted-in {
  color: var(--success-color);
  font-weight: 500;
}

.opt-out-status.opted-out {
  color: var(--danger-color);
  font-weight: 500;
}

/* Action buttons */
.action-buttons {
  display: flex;
  gap: 5px;
}

.action-buttons .btn-edit,
.action-buttons .btn-delete {
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  flex: none;
  min-width: 32px;
  min-height: 32px;
}

.action-buttons .btn-edit:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.action-buttons .btn-delete:hover {
  background-color: #dc3545;
  color: var(--white);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--gray-light);
  border-top: 1px solid var(--gray-medium);
}

.pagination-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
}

.page-input {
  width: 50px;
  padding: 4px 6px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  text-align: center;
  font-size: var(--font-size-sm);
}

.btn-pagination {
  padding: 6px 10px;
  border: 1px solid var(--gray-medium);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  font-size: var(--font-size-sm);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-pagination:not(:disabled):hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
}

.btn-refresh {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--gray-medium);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  font-size: var(--font-size-sm);
}

.btn-refresh:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-size-select {
  padding: 6px 8px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  background-color: var(--white);
  font-size: var(--font-size-sm);
}

/* Modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--gray-medium);
}

.modal-header h3 {
  margin: 0;
  color: var(--dark-color);
  font-size: var(--font-size-lg);
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-dark);
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background-color: var(--gray-light);
}

/* Import modal specific styles */
#import-modal .modal-content {
  width: 800px;
  min-height: 600px;
}

.import-steps {
  padding: 20px;
  border-bottom: 1px solid var(--gray-medium);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gray-medium);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  z-index: 2;
  padding: 0 10px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: var(--font-size-sm);
  margin-bottom: 8px;
}

.step.active .step-number {
  background-color: var(--primary-color);
}

.step.completed .step-number {
  background-color: var(--success-color);
}

.step-text {
  font-size: var(--font-size-xs);
  text-align: center;
  color: var(--gray-dark);
  max-width: 120px;
}

.step.active .step-text {
  color: var(--primary-color);
  font-weight: 500;
}

.import-content {
  padding: 40px;
  min-height: 300px;
}

/* File upload area */
.file-upload-area {
  border: 2px dashed var(--gray-medium);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  background-color: var(--gray-light);
  transition: all 0.3s ease;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 121, 0, 0.05);
}

.upload-icon i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.file-upload-area h4 {
  margin: 0 0 10px 0;
  color: var(--dark-color);
}

.file-upload-area p {
  margin: 0 0 20px 0;
  color: var(--gray-dark);
  font-size: var(--font-size-sm);
}

.btn-select-file {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-base);
  transition: background-color 0.3s ease;
}

.btn-select-file:hover {
  background-color: var(--primary-dark);
}

/* File preview */
.file-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
}

.file-preview i {
  font-size: 2rem;
  color: var(--success-color);
}

.file-info {
  display: flex;
  flex-direction: column;
}

.file-info strong {
  color: var(--dark-color);
  margin-bottom: 4px;
}

.file-info span {
  color: var(--gray-dark);
  font-size: var(--font-size-sm);
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid var(--gray-medium);
  background-color: var(--gray-light);
}

.btn-back,
.btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.btn-back {
  background-color: var(--white);
  color: var(--gray-dark);
  border: 1px solid var(--gray-medium);
}

.btn-back:hover {
  background-color: var(--gray-light);
}

.btn-next {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-next:hover:not(:disabled) {
  background-color: var(--primary-dark);
}

.btn-next:disabled {
  background-color: var(--gray-medium);
  cursor: not-allowed;
}

/* Edit contact modal */
#edit-contact-modal .modal-content {
  width: 500px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--dark-color);
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 121, 0, 0.25);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 36px;
  padding: 8px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  background-color: var(--white);
}

.tags-container .tag {
  display: flex;
  align-items: center;
  gap: 4px;
}

.remove-tag {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.remove-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-add-tag {
  width: 30px;
  height: 30px;
  border: 2px dashed var(--gray-medium);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-add-tag:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-opt-out {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px dashed var(--primary-color);
  background: none;
  color: var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.btn-opt-out:hover {
  background-color: rgba(255, 121, 0, 0.05);
}

#edit-contact-modal .modal-footer {
  justify-content: space-between;
}

.btn-cancel,
.btn-delete,
.btn-save {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.btn-cancel {
  background-color: var(--white);
  color: var(--gray-dark);
  border: 1px solid var(--gray-medium);
}

.btn-cancel:hover {
  background-color: var(--gray-light);
}

.btn-delete {
  background-color: #dc3545;
  color: var(--white);
}

.btn-delete:hover {
  background-color: #c82333;
}

.btn-save {
  background-color: #28a745;
  color: var(--white);
}

.btn-save:hover {
  background-color: #218838;
}

/* Tab content */
.tab-content {
  background-color: var(--white);
}

#target-filters-tab {
  padding: 40px;
  text-align: center;
  color: var(--gray-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .contact-actions {
    justify-content: space-between;
  }

  .contacts-table-container {
    font-size: var(--font-size-xs);
  }

  .contacts-table th,
  .contacts-table td {
    padding: 8px 6px;
  }

  .pagination-container {
    flex-direction: column;
    gap: 10px;
  }

  #import-modal .modal-content,
  #edit-contact-modal .modal-content {
    width: 95vw;
    margin: 10px;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 10px;
  }

  .step {
    flex: 1;
    min-width: 80px;
  }
}

/* =============================================================================
   MODAL EDIT CONTACT - ESTILOS MEJORADOS
   ============================================================================= */

/* Modal de editar contacto específico */
#edit-contact-modal .modal-content {
  width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

#edit-contact-modal .modal-body {
  padding: 0;
}

#edit-contact-modal .form-group {
  margin-bottom: 20px;
  padding: 0 20px;
}

/* Primer form-group (etiquetas) con padding especial */
#edit-contact-modal .form-group:first-child {
  padding-top: 20px;
}

#edit-contact-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--dark-color);
}

#edit-contact-modal .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-medium);
  border-radius: 8px;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  background-color: var(--white);
}

#edit-contact-modal .form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
  background-color: var(--white);
}

/* Contenedor de etiquetas mejorado */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 45px;
  padding: 12px 15px;
  border: 2px solid var(--gray-medium);
  border-radius: 8px;
  background-color: var(--white);
  align-items: center;
  transition: border-color 0.3s ease;
}

.tags-container:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}

/* Tags individuales mejorados */
.tags-container .tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 500;
  animation: tagSlideIn 0.2s ease;
}

@keyframes tagSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tags-container .tag .remove-tag {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.tags-container .tag .remove-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Botón para agregar tag mejorado */
.btn-add-tag {
  width: 35px;
  height: 35px;
  border: 2px dashed var(--primary-color);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: auto;
}

.btn-add-tag:hover {
  border-style: solid;
  background-color: rgba(255, 121, 0, 0.1);
  transform: scale(1.1);
}

/* Botón opt-out mejorado */
.btn-opt-out {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px dashed var(--primary-color);
  background: none;
  color: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-opt-out:hover {
  border-style: solid;
  background-color: rgba(255, 121, 0, 0.05);
  transform: translateY(-1px);
}

/* Footer del modal mejorado */
#edit-contact-modal .modal-footer {
  justify-content: space-between;
  background-color: #f8f9fa;
  padding: 20px;
  gap: 15px;
}

.btn-cancel,
.btn-delete,
.btn-save {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.btn-cancel {
  background-color: var(--white);
  color: var(--gray-dark);
  border: 2px solid var(--gray-medium);
}

.btn-cancel:hover {
  background-color: var(--gray-light);
  border-color: var(--gray-dark);
}

.btn-delete {
  background-color: #dc3545;
  color: var(--white);
}

.btn-delete:hover {
  background-color: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-save {
  background-color: #28a745;
  color: var(--white);
}

.btn-save:hover {
  background-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Responsive para el modal */
@media (max-width: 768px) {
  #edit-contact-modal .modal-content {
    width: 95vw;
    margin: 10px;
  }

  #edit-contact-modal .modal-footer {
    flex-direction: column;
  }

  .btn-cancel,
  .btn-delete,
  .btn-save {
    width: 100%;
  }
}

/* =============================================================================
   IMPORTACIÓN SIMPLE - DRAG & DROP
   ============================================================================= */

.import-contacts-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Drop Zone */
.drop-zone {
  border: 3px dashed var(--gray-medium);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  background-color: #fafafa;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.drop-zone:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 121, 0, 0.05);
}

.drop-zone.dragover {
  border-color: var(--primary-color);
  background-color: rgba(255, 121, 0, 0.1);
  border-style: solid;
  transform: scale(1.02);
}

.drop-zone-content i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.drop-zone-content h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.drop-zone-content p {
  color: var(--gray-dark);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn-select-file {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-select-file:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 121, 0, 0.3);
}

.supported-formats {
  margin-top: 20px;
  color: var(--gray-dark);
}

/* Vista previa */
.preview-section {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.preview-header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.file-info {
  font-size: 0.9rem;
  opacity: 0.9;
}

.preview-table-container {
  max-height: 300px;
  overflow-y: auto;
  border-bottom: 1px solid var(--gray-medium);
}

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

.preview-table th {
  background-color: #f8f9fa;
  color: var(--dark-color);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-sm);
  border-bottom: 2px solid var(--gray-medium);
  position: sticky;
  top: 0;
}

.preview-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--gray-light);
  font-size: var(--font-size-sm);
}

.preview-table tr:hover {
  background-color: rgba(255, 121, 0, 0.05);
}

/* Acciones de vista previa */
.preview-actions {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
}

.btn-cancel {
  background-color: var(--white);
  color: var(--gray-dark);
  border: 2px solid var(--gray-medium);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  background-color: var(--gray-light);
  border-color: var(--gray-dark);
}

.btn-import-confirm {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-import-confirm:hover {
  background-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Estados de carga */
.drop-zone.loading {
  pointer-events: none;
  opacity: 0.7;
}

.drop-zone.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid var(--gray-medium);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .drop-zone {
    padding: 40px 20px;
  }

  .drop-zone-content h3 {
    font-size: 1.3rem;
  }

  .preview-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-cancel,
  .btn-import-confirm {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================================
   CAMPAIGN MANAGER PAGE HEADERS
   ============================================================================= */

/* Standard header for all campaign manager pages */
.campaign-page-header {
  margin-bottom: 30px;
}

.campaign-page-header h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.campaign-page-header h2 i {
  margin-right: 15px;
}

.campaign-page-header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* =============================================================================
   ADD FUNDS BUTTON STYLES
   ============================================================================= */

/* Standard add funds button for all pages */
.btn-add-funds {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
}

.btn-add-funds:hover {
  background-color: var(--primary-dark);
}

.btn-add-funds i {
  font-size: 0.7rem;
}

/* Black button style for flow editor */
.btn-black {
  background-color: #000000;
  color: white;
  border: 1px solid #000000;
}

.btn-black:hover {
  background-color: #333333;
  color: white;
  border-color: #333333;
}

/* =============================================================================
   ORANGE BUTTON CLASSES FOR MASORANGE BRANDING
   ============================================================================= */

.btn-orange {
  background-color: #ff7900;
  border-color: #ff7900;
  color: white;
}

.btn-orange:hover {
  background-color: #e56800;
  border-color: #e56800;
  color: white;
}

.btn-outline-orange {
  color: #ff7900;
  border-color: #ff7900;
  background-color: transparent;
}

.btn-outline-orange:hover {
  background-color: #ff7900;
  color: white;
  border-color: #ff7900;
}

.bg-orange {
  background-color: #ff7900;
}

.text-orange {
  color: #ff7900;
}

.badge-orange {
  background-color: #ff7900;
  color: white;
}
