/* 
 * Custom CSS for Call Center Dashboard
 * Bootstrap 5 + Custom Styling to match React + TailwindCSS version
 */

:root {
  /* Color Variables */
  --gradient-bg: linear-gradient(135deg, #f9fafb 0%, #dbeafe 50%, #e9d5ff 100%);
  --gradient-blue-purple: linear-gradient(90deg, #4e679e, #7a51ba, #4e679e);
  --gradient-blue-cyan: linear-gradient(135deg, #6b8acc 0%, #272198 100%);
  --gradient-emerald-teal: linear-gradient(135deg, #69c8a9 0%, #1e4a45 100%);
  --gradient-amber-orange: linear-gradient(135deg, #deab54 0%, #92521d 100%);
  --gradient-purple-pink: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-rose-pink: linear-gradient(135deg, #e867a7 0%, #a43145 100%);
  --gradient-indigo-purple: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-red-rose: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
  --gradient-cyan-blue: linear-gradient(135deg, #92cfd8 0%, #1c7f8e 100%);
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: #111827;
  overflow-x: hidden;
}

/* Layout */
.main-wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.sidebar {
  width: 280px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-left: 280px;
  transition: margin-left 0.3s ease;
}

.main-header {
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-sm);
}
input.btn.btn-primary {
  background: linear-gradient(to right, #c8861b 0%, #d6a40c 50%, #c8861b 100%) !important;
}
button.btn.btn-primary {
  background: linear-gradient(to right, #c8861b 0%, #d6a40c 50%, #c8861b 100%) !important;
}
.d-flex.align-items-center.justify-content-center {
  background: linear-gradient(90deg, #4e679e, #7a51ba, #4e679e) !important;
}
.alert.text-white.text-center.p-1 {
  color: #1f1d1a !important;
  background: linear-gradient(to right, #acabab 0%, #dedede 50%, #acabab 100%);
}
span.fw-medium {
  font-weight: 600 !important;
}
.modal-header {
  background: linear-gradient(to right, #eaeaea 0%, #d2d2d2 100%) !important;
  border-bottom: 1px solid #24282c !important;
}

.main-content {
  flex: 1;
  overflow-y: auto;
/*   padding: 2rem; */
}

.main-content::-webkit-scrollbar {
  width: 8px;
}

.main-content::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.main-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Sidebar Styles */
.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.sidebar-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue-purple);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.sidebar-menu {
/*   padding: 1.5rem 1rem; */
}

/*.sidebar-menu-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
}*/

/*.sidebar-menu-item:hover {
  background: #f9fafb;
  box-shadow: var(--shadow-sm);
}*/

.sidebar-menu-item.active {
  /* background: linear-gradient(to right, #dbeafe 0%, #e9d5ff 100%); */
/*  border: 1px solid #e5ecf5;
  box-shadow: var(--shadow-sm);*/
}

/*.sidebar-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.05rem 1rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-menu-item.active .sidebar-menu-link {
  color: #1d4ed8;
  font-weight: 600;
}

.sidebar-icon-wrapper {
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  background: #f3f4f6;
  transition: all 0.3s ease;
}

.sidebar-menu-item:hover .sidebar-icon-wrapper {
  background: #e5e7eb;
}

.sidebar-menu-item.active .sidebar-icon-wrapper {
  background: var(--gradient-blue-purple);
  box-shadow: var(--shadow-md);
}*/

.sidebar-icon {
  height: 16px;
  color: #4b5563;
  transition: color 0.3s ease;
}

.sidebar-menu-item.active .sidebar-icon {
  color: #ffffff;
}

.sidebar-active-indicator {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-blue-purple);
  border-radius: 4px 0 0 4px;
}

/* Mobile Sidebar Toggle */
.sidebar-toggle {
  position: fixed;
  top: 2rem;
  left: 1rem;
  z-index: 100;
  display: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background: #f9fafb;
  box-shadow: var(--shadow-lg);
}

/* Adjust header padding on mobile to avoid overlap with toggle */
@media (max-width: 991.98px) {
  .main-header {
    padding-left: 4rem !important;
  }
  
  /* Stack page header content vertically on small and medium screens */
  .page-header .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem;
  }
  
  /* Make button group full width on mobile */
  .page-header .d-flex.gap-2 {
    width: 100%;
  }
  
  .page-header .d-flex.gap-2 .btn {
    flex: 1;
  }
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Header Styles */
.header-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: var(--gradient-blue-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.header-subtitle {
  color: #6b7280;
  margin-bottom: 0;
}

.header-user-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient-blue-purple);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-lg);
}

/* Card Styles */
.custom-card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.custom-card:hover {
  box-shadow: var(--shadow-xl);
}

.social-card{
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.social-header{
  border-top: 3px solid #dedede !important;
  border-bottom: 2px solid #f0f0f0 !important;
  padding: 2px;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-body{
  display: flex;
  background: #fff;
}

.social-box{
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  border-right: 1px solid #eee;
  color:#625a4e;
}

.social-box:last-child{
  border-right: none;
}

.social-box h4{
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}

.social-box p{
  margin: 5px 0 0;
  color: #777;
}

/* Metrics Card */
.metrics-card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.metrics-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.metrics-card-header {
  padding: 2rem 1.5rem 2.75rem;
}

.metrics-card-body {
  padding: 0 1.5rem 1.5rem;
}

.metrics-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.metrics-card-icon {
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.metrics-card-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.metrics-card-change {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  display: inline-block;
  border: 1px solid;
}

/* Badge Styles */
.badge-positive {
  background: #d1fae5;
  color: #065f46;
  border-color: #a7f3d0;
}

.badge-negative {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.badge-neutral {
  background: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}

.badge-status-active {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-status-hold {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-priority-high {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.badge-priority-medium {
  background: #fed7aa;
  color: #9a3412;
  border: 1px solid #fdba74;
}

.badge-priority-low {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* Table Styles */
.custom-table {
  border: none;
}

.custom-table thead {
  background: #f9fafb;
}

.custom-table thead th {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-table tbody tr {
  border-top: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}

.custom-table tbody tr:hover {
  background: #f9fafb;
}

.custom-table tbody td {
  border: none;
  padding: 1rem 1.5rem;
  color: #111827;
}

.table-card-header {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
}

.table-card-header.bg-cyan-blue {
  background: var(--gradient-cyan-blue);
}

.table-card-header.bg-indigo-purple {
  background: var(--gradient-indigo-purple);
}

/* Avatar Styles */
.custom-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

.custom-avatar-lg {
  width: 40px;
  height: 40px;
}

.avatar-purple-pink {
  background: var(--gradient-purple-pink);
}

.avatar-blue-cyan {
  background: var(--gradient-blue-cyan);
}

/* Chart Card Styles */
.chart-card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  overflow: hidden;
}

.chart-card-header {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
}

.chart-card-header.bg-emerald-teal {
  background: var(--gradient-emerald-teal);
}

.chart-card-header.bg-rose-pink {
  background: var(--gradient-rose-pink);
}

/* Agent Card Styles */
.agent-card {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.agent-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c4b5fd;
}

/* Button Styles */
.btn-gradient {
  background: var(--gradient-blue-purple);
  color: #ffffff;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #2563eb 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

/* Page Header Styles */
.page-header {
  background: var(--gradient-blue-purple);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.page-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header-subtitle {
  color: #dbeafe;
  margin-bottom: 0;
}

/* Collapsible Card Styles */
.collapsible-card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.collapsible-header {
  background: linear-gradient(to right, #eaeaea 0%, #d2d2d2 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.collapsible-header:hover {
  background: linear-gradient(to right, #acabab 0%, #dedede 50%, #acabab 100%);
}

.collapsible-icon {
  width: 40px;
  height: 40px;
  background: #c8861b;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Report Item Styles */
.report-item {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  border-right: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  cursor: pointer;
}

.report-item:hover {
  background: linear-gradient(to right, #acabab 0%, #dedede 50%, #acabab 100%);
}

.report-item-icon {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.report-item:hover .report-item-icon {
  background: #c8861b;
}

.report-item:hover .report-item-icon svg {
  color: #ffffff !important;
}

.report-item-title {
  font-weight: 500;
  color: #111827;
  transition: color 0.2s ease;
  margin-bottom: 0.25rem;
}

.report-item:hover .report-item-title {
  color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important;
}

/* Form Styles */
.form-label {
  font-weight: 500 !important;
  color: #1f1d1a;
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
  
  .sidebar-overlay.show {
    display: block;
  }
  
  .content-wrapper {
    margin-left: 0;
  }
  
  .sidebar-toggle {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .main-header {
    padding: 1rem 1.5rem;
  }
  
  .header-title {
    font-size: 1.5rem;
  }
  
  .main-content {
    padding: 1.5rem;
  }
  
  .page-header {
    padding: 1.5rem;
  }
  
  .page-header-title {
    font-size: 1.5rem;
  }
  
  /* Stack page header icon and text vertically on very small screens */
  .page-header .d-flex.align-items-center.gap-4 {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  
  /* Stack quick stats grid on mobile */
  .page-header .row.g-3 {
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .main-content {
    padding: 1rem;
  }
  
  .sidebar {
    width: 260px;
  }
}

/* Utility Classes */
.text-gradient-blue-purple {
  background: var(--gradient-blue-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-blue-purple {
  background: var(--gradient-blue-purple);
}

.bg-gradient-blue-cyan {
  background: var(--gradient-blue-cyan);
}

.bg-gradient-emerald-teal {
  background: var(--gradient-emerald-teal);
}

.bg-gradient-amber-orange {
  background: var(--gradient-amber-orange);
}

.bg-gradient-purple-pink {
  background: var(--gradient-purple-pink);
}

.bg-gradient-rose-pink {
  background: var(--gradient-rose-pink);
}

.bg-gradient-indigo-purple {
  background: var(--gradient-indigo-purple);
}

.bg-gradient-red-rose {
  background: var(--gradient-red-rose);
}

.bg-gradient-cyan-blue {
  background: var(--gradient-cyan-blue);
}

.shadow-custom-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-custom-md {
  box-shadow: var(--shadow-md);
}

.shadow-custom-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-custom-xl {
  box-shadow: var(--shadow-xl);
}

/* Icon Sizing */
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  height: 20px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

.icon-xl {
  width: 28px;
  height: 28px;
}

.nav {
  --bs-nav-link-padding-x: .2rem !important;
  --bs-nav-link-padding-y: 0.2rem !important;
}

/* Admin Option Cards */
.admin-option-card {
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
}

.admin-option-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #93c5fd;
  background: linear-gradient(to right, #eff6ff, #f3e8ff);
}

.admin-option-card:hover .d-flex.align-items-center.justify-content-center {
  transform: scale(1.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.admin-option-card:hover h3 {
  color: #1d4ed8;
}

.admin-option-card:hover p {
  color: #374151;
}

.admin-option-card:hover .badge {
  background-color: #dbeafe !important;
  color: #1d4ed8 !important;
}

.admin-configure-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.admin-option-card:hover .admin-configure-btn {
  opacity: 1;
}

.admin-configure-btn:hover {
  color: #1d4ed8 !important;
  background-color: #eff6ff;
}

/* Agent View Tabs */
.agent-tabs .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  color: #6b7280;
  background: transparent;
  border: none;
  transition: all 0.2s ease;
}

.agent-tabs .nav-link:hover {
  background: rgba(255, 255, 255, 0.6);
}

.agent-tabs .nav-link.active {
  background: linear-gradient(to right, #c8861b 0%, #d6a40c 50%, #c8861b 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-weight: 600;
}
p.btn.btn-secondary.w-100.d-flex.flex-column.align-items-center.gap-2 {
  background: linear-gradient(to right, #acabab 0%, #dedede 50%, #acabab 100%);
    color: #1f1d1a;
    font-weight: 600 !important;
}

h3.h5.fw-bold.mb-4 {
  color: linear-gradient(to right, #1f1d1a, #1f1d1a) !important;
}

/* Agent Control Buttons */
.agent-btn-dial {
  background: linear-gradient(to right, #10b981, #059669, #14b8a6);
  color: white;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-dial:hover {
  background: linear-gradient(to right, #059669, #047857, #0f766e);
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.agent-btn-preview {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
  color: #1d4ed8;
  border: 1px solid #93c5fd;
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-preview:hover {
  background: linear-gradient(to right, #dbeafe, #bfdbfe);
  border-color: #60a5fa;
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-btn-form {
  background: linear-gradient(to right, #faf5ff, #f3e8ff);
  color: #7c3aed;
  border: 1px solid #d8b4fe;
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-form:hover {
  background: linear-gradient(to right, #f3e8ff, #e9d5ff);
  border-color: #c084fc;
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-btn-form2 {
  background: linear-gradient(to right, #fdf4ff, #fae8ff);
  color: #a855f7;
  border: 1px solid #e9d5ff;
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-form2:hover {
  background: linear-gradient(to right, #fae8ff, #f5d0fe);
  border-color: #d8b4fe;
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-btn-park {
  background: linear-gradient(to right, #fffbeb, #fef3c7);
  color: #b45309;
  border: 1px solid #fcd34d;
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-park:hover {
  background: linear-gradient(to right, #fef3c7, #fde68a);
  border-color: #fbbf24;
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-btn-transfer {
  background: linear-gradient(to right, #ecfeff, #cffafe);
  color: #0e7490;
  border: 1px solid #67e8f9;
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-transfer:hover {
  background: linear-gradient(to right, #cffafe, #a5f3fc);
  border-color: #22d3ee;
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-btn-hangup {
  background: linear-gradient(to right, #f43f5e, #dc2626, #ec4899);
  color: white;
  border: 1px solid rgba(244, 63, 94, 0.2);
  font-weight: 500;
  font-size: 0.75rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.agent-btn-hangup:hover {
  background: linear-gradient(to right, #e11d48, #b91c1c, #db2777);
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
