/* GIA Investment Services - Enhanced Dashboard Styles */

/* Variables - Investment Services Color Palette */
:root {
    /* Base color definitions */
    --primary-100: rgba(0, 159, 227, 0.1);
    --primary-200: rgba(0, 159, 227, 0.2);
    --primary-300: rgba(0, 159, 227, 0.4);
    --primary-400: rgba(0, 159, 227, 0.6);
    --primary-500: #4AACB5;
    --primary-600: rgb(0, 143, 204);
    --primary-700: rgb(0, 119, 170);
    --primary-800: rgb(0, 95, 136);
    --primary-900: rgb(0, 71, 102);
    
    /* Secondary Colors */
    --secondary-100: rgba(248, 249, 251, 0.4);
    --secondary-200: rgba(248, 249, 251, 0.6);
    --secondary-300: rgba(248, 249, 251, 0.8);
    --secondary-400: rgb(248, 249, 251);
    --secondary-500: rgb(238, 240, 244);
    --secondary-600: rgb(228, 231, 237);
    --secondary-700: rgb(218, 222, 230);
    
    /* Text Colors */
    --text-primary: rgb(0, 119, 170);
    --text-secondary: rgb(0, 159, 227);
    --text-dark: #333333;
    --text-muted: #525050;
    --text-light: #ffffff;
    
    /* Neutral Colors */
    --neutral-100: #f8f9fa;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
    
    /* HSL Colors for Modern UI */
    --color-white: 0 0% 100%;
    --color-black: 0 0% 0%;
    --color-gray-50: 210 40% 98%;
    --color-gray-100: 210 40% 96%;
    --color-gray-200: 214 32% 91%;
    --color-gray-300: 213 27% 84%;
    --color-gray-400: 215 20% 65%;
    --color-gray-500: 220 17% 50%;
    --color-gray-600: 215 14% 34%;
    --color-gray-700: 217 19% 27%;
    --color-gray-800: 215 28% 17%;
    --color-gray-900: 221 39% 11%;
    
    /* Brand colors */
    --color-blue: 201 100% 34%;      /* #0176ab - Primary blue */
    --color-blue-dark: 205 69% 28%;  /* #154c79 - Secondary dark blue */
    --color-blue-light: 197 100% 47%; /* #00b7ea - Light blue accent */
    --color-red: 0 72% 51%;          /* Destructive red */
    --color-green: 152 76% 40%;      /* Success green */
    --color-amber: 38 92% 50%;       /* Warning amber */
    
    /* Opacity levels */
    --opacity-subtle: 0.05;
    --opacity-light: 0.1;
    --opacity-medium: 0.5;
    --opacity-high: 0.8;
    
    /* Semantic color tokens */
    --background: var(--color-gray-50);
    --foreground: var(--color-gray-900);
    
    /* Card colors */
    --card: var(--color-white);
    --card-foreground: var(--color-gray-900);
    
    /* Popover colors */
    --popover: var(--color-white);
    --popover-foreground: var(--color-gray-900);
    
    /* Primary colors */
    --primary: var(--color-blue);
    --primary-foreground: var(--color-white);
    
    /* Secondary colors */
    --secondary: var(--color-blue-dark);
    --secondary-foreground: var(--color-white);
    
    /* Muted colors */
    --muted: var(--color-gray-100);
    --muted-foreground: var(--color-gray-500);
    
    /* Accent colors */
    --accent: var(--color-blue-light);
    --accent-foreground: var(--color-white);
    
    /* Destructive colors */
    --destructive: var(--color-red);
    --destructive-foreground: var(--color-white);
  
    /* Success colors */
    --success: var(--color-green);
    --success-foreground: var(--color-white);
    
    /* Warning colors */
    --warning: var(--color-amber);
    --warning-foreground: var(--color-gray-900);
    
    /* Border and radius */
    --border: var(--color-gray-200);
    --input: var(--color-gray-200);
    --ring: 201 100% 34%;
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(205 69% 28%), hsl(201 100% 34%));
    --gradient-accent: linear-gradient(to right, hsl(201 100% 34%), hsl(197 100% 47%));
    --gradient-success: linear-gradient(to right, hsl(201 100% 34%), hsl(152 76% 40%));
    --gradient-hero: linear-gradient(to bottom right, #0176ab, #00b7ea);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    --shadow-lg: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
    --shadow-xl: 0 24px 48px -12px rgba(16, 24, 40, 0.18);
    --shadow-2xl: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Dimensions */
    --sidebar-width: 300px;
    --header-height: 64px;
    --form-control-height: 44px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
}


/* Global Styles */
.business-entity-dashboard {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Form Elements - Modern & Professional Styling */

/* Base form control styles */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea,
.select2-container--default .select2-selection--single {
  height: var(--form-control-height);
  padding: 0.625rem 1rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  color: hsl(var(--foreground));
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Focus states */
.form-control:focus,
input:focus,
select:focus,
textarea:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
  outline: none;
  z-index: 2;
  background-color: hsl(var(--card));
}

/* Hover states */
.form-control:hover:not(:disabled):not(:focus),
input:hover:not(:disabled):not(:focus),
select:hover:not(:disabled):not(:focus),
textarea:hover:not(:disabled):not(:focus) {
  border-color: hsl(var(--primary) / 0.5);
}

/* Placeholder styling */
.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* Form value styling */
.business-entity-dashboard input[type="text"],
.business-entity-dashboard input[type="email"],
.business-entity-dashboard input[type="tel"],
.business-entity-dashboard input[type="number"],
.business-entity-dashboard input[type="password"],
.business-entity-dashboard select,
.business-entity-dashboard textarea,
.business-entity-dashboard .select2-selection__rendered {
  color: hsl(var(--foreground));
  font-weight: var(--font-medium);
}

/* Select2 styling */
.select2-container--default .select2-selection--single {
  height: var(--form-control-height);
  display: flex;
  align-items: center;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding-left: 0;
  color: hsl(var(--foreground));
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-dropdown {
  border-color: hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background-color: hsl(var(--card));
  animation: fadeInDown 0.2s ease-out;
  z-index: 1060;
}

.select2-results__option {
  padding: 0.75rem 1rem;
  transition: background-color var(--transition-fast);
  font-size: var(--text-sm);
  color: hsl(var(--foreground));
  cursor: pointer;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.select2-results__option:last-child {
  border-bottom: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: var(--font-medium);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: var(--font-semibold);
}

/* Form layout and spacing */
.mb-3.row {
  margin-bottom: 1.5rem !important;
}

/* Form labels */
.gia_div_tab_body_label {
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.3px;
}

/* Style for readonly and disabled values */
.business-entity-dashboard input[readonly],
.business-entity-dashboard input[disabled],
.business-entity-dashboard select[disabled],
.business-entity-dashboard .form-control[readonly],
.business-entity-dashboard .form-control[disabled] {
  color: hsl(var(--muted-foreground)) !important;
  background-color: hsl(var(--muted) / 0.5);
  font-weight: var(--font-medium);
  opacity: 0.8;
  cursor: not-allowed;
}



/* Form hints */
.gia_div_tab_body_hint_p {
  color: hsl(var(--muted-foreground));
  font-size: var(--text-xs);
  margin-top: 0.25rem;
}

.gia_div_tab_body_hint_p a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.gia_div_tab_body_hint_p a:hover {
  color: hsl(var(--accent));
  text-decoration: none;
}

/* Style for dropdown selected values */
.business-entity-dashboard .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--foreground)) !important;
  font-weight: var(--font-medium);
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Style for current file display */
.business-entity-dashboard .current-file {
  color: hsl(var(--foreground)) !important;
  font-weight: var(--font-medium);
}

.business-entity-dashboard #wrapwrap main {
  padding: 0 !important;
}

.business-entity-dashboard #wrap {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Navigation Controls */
.card-footer1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  margin-top: var(--space-6);
  border-top: 1px solid hsl(var(--border));
}

.next-section, .prev-section {
  background: transparent;
  border: none;
  color: hsl(var(--primary));
  font-size: var(--text-2xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.next-section:hover, .prev-section:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gia_arrow_button {
  transition: transform var(--transition-fast);
}

.next-section:hover .gia_arrow_button {
  transform: translateX(3px);
}

.prev-section:hover .gia_arrow_button {
  transform: translateX(-3px);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: var(--space-6);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
}

.table thead th {
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
  font-weight: var(--font-semibold);
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid hsl(var(--border));
  font-size: var(--text-sm);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.table tbody tr {
  transition: background-color var(--transition-fast);
}

.table tbody tr:hover {
  background-color: hsl(var(--primary) / 0.05);
}

.table tbody td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* Custom scrollbar */
.business-entity-dashboard ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.business-entity-dashboard ::-webkit-scrollbar-track {
  background: hsl(var(--muted));
  border-radius: 3px;
}

.business-entity-dashboard ::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground) / 0.5);
  border-radius: 3px;
}

.business-entity-dashboard ::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.7);
}

/* Dashboard Container */
.dashboard-container {
  display: flex;
  min-height: calc(100vh - var(--header-height));
  background-color: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

/* Enhanced Sidebar - Modern Elegant Style */
.gia_sidebar_right {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-xl);

  top: 50px;
  left: 0;
  width: var(--sidebar-width);

  overflow-y: auto;
  overflow-x: hidden;
  transition: all var(--transition-speed) ease;
  z-index: 10;
  border-right: 1px solid hsl(var(--primary-light) / 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* RTL support for sidebar */
[dir="rtl"] .gia_sidebar_right {
  left: auto !important;
  right: 0 !important;
  box-shadow: -5px 0 15px -5px hsl(var(--color-black) / 0.2);
}

.gia_sidebar_right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: var(--opacity-subtle);
  pointer-events: none;
}



.gia_form_name {
  padding: 32px 16px 24px;
  text-align: center;
  border-bottom: 1px solid hsl(var(--color-white) / var(--opacity-light));
  position: relative;
}

.gia_form_name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: hsl(var(--accent));
  border-radius: 3px;
}

.gia_form_name a {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

.gia_sidebar_right_titles {
  padding: 24px 0;
}

.gia_sidebar_right_title {
  padding: 14px 20px;
  color: hsl(var(--color-white) / var(--opacity-high));
  display: flex;
  align-items: center;
  transition: all var(--transition-speed) ease;
  margin: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  border-radius: var(--radius);
  border-inline-start: 3px solid transparent;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* RTL support for sidebar navigation items */
[dir="rtl"] .gia_sidebar_right_title {
  border-left: none !important;
  border-right: 3px solid transparent !important;
}

.gia_sidebar_right_title:hover {
  background-color: hsl(var(--color-white) / var(--opacity-light));
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  border-left-color: hsl(var(--accent));
  transform: translateX(3px);
  box-shadow: 0 4px 8px hsl(var(--color-black) / 0.1);
}

/* RTL support for sidebar hover state */
[dir="rtl"] .gia_sidebar_right_title:hover {
  border-left-color: transparent !important;
  border-right-color: hsl(var(--accent)) !important;
  transform: translateX(-3px) !important;
}

.gia_sidebar_right_title.active {
  background-color: hsl(var(--color-white) / 0.15);
  color: hsl(var(--accent));
  font-weight: 600;
  border-inline-start-color: hsl(var(--accent));
  box-shadow: 0 4px 12px hsl(var(--color-black) / var(--opacity-light));
  transform: translateX(5px);
}

/* RTL support for sidebar active state */
[dir="rtl"] .gia_sidebar_right_title.active {
  border-left-color: transparent !important;
  border-right-color: hsl(var(--accent)) !important;
  transform: translateX(-5px) !important;
}

.gia_sidebar_right_title.active .gia_sidebar_right_icon {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 15px hsl(var(--accent) / 0.4);
  transform: scale(1.1);
}

.gia_sidebar_right_title.active:hover {
  background-color: hsl(var(--color-white) / 0.2);
  transform: translateX(5px);
}

/* RTL support for active hover state */
[dir="rtl"] .gia_sidebar_right_title.active:hover {
  transform: translateX(-5px) !important;
}

.gia_sidebar_right_icon {
  margin-right: 12px;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--color-white) / 0.15);
  border-radius: 10px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 6px hsl(var(--color-black) / 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* RTL support for sidebar icons */
[dir="rtl"] .gia_sidebar_right_icon {
  margin-right: 0 !important;
  margin-left: 12px !important;
}

.gia_sidebar_right_title .fa-exclamation-triangle {
  margin-left: auto;
  color: hsl(var(--accent));
  font-size: 0.75rem;
  display: none !important;
}

/* RTL support for error icon */
[dir="rtl"] .gia_sidebar_right_title .fa-exclamation-triangle {
  margin-left: 0;
  margin-right: auto;
}
.gia_sidebar_right_title.has-error .fa-exclamation-triangle {
  display: inline !important;

}



.gia_sidebar_right_contact_social {
  padding: 24px 20px;
  border-top: 1px solid hsl(var(--color-white) / var(--opacity-light));
  margin-top: auto;
  background: linear-gradient(to bottom, hsl(var(--color-black) / 0), hsl(var(--color-black) / 0.2));
  position: relative;
}

.gia_sidebar_right_contact_social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, transparent, hsl(var(--accent)), transparent);
  border-radius: 3px;
}

.gia_sidebar_right_contact_mobile_div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  padding: 10px;
  background-color: hsl(var(--color-white) / var(--opacity-subtle));
  border-radius: 10px;
  transition: all var(--transition-speed) ease;
}

.gia_sidebar_right_contact_mobile_div:hover {
  background-color: hsl(var(--color-white) / var(--opacity-light));
  transform: translateY(-3px);
  box-shadow: 0 6px 12px hsl(var(--color-black) / var(--opacity-light));
}

.gia_sidebar_right_contact_mobile {
  display: flex;
  align-items: center;
  color: hsl(var(--accent));
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  padding: 8px 12px;
  background-color: hsl(var(--color-white) / var(--opacity-light));
  border-radius: var(--radius);
  transition: all var(--transition-speed) ease;
}

.gia_sidebar_right_contact_mobile:hover {
  background-color: hsl(var(--color-white) / 0.2);
}

.gia_sidebar_right_social_div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.gia_sidebar_right_social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: hsl(var(--color-white) / var(--opacity-light));
  color: hsl(var(--primary-foreground));
  transition: all var(--transition-speed) ease;
}

.gia_sidebar_right_social:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Content Area - Modern Elegant Style */
.gia_sidebar_left {
  background-color: hsl(var(--background));
  padding: var(--space-2) !important;
  flex: 1;
  position: relative;
  min-height: 100vh;
  overflow-y: auto;
  margin-inline-start: auto;
  width: calc(100% - var(--sidebar-width));
  box-shadow: inset 5px 0 15px -5px hsl(var(--color-black) / 0.05);
  border-left: 1px solid hsl(var(--muted) / 0.2);
}

/* RTL support for main content area */
[dir="rtl"] .gia_sidebar_left {
  margin-left: 0 !important;
  margin-right: var(--sidebar-width) !important;
  box-shadow: inset -5px 0 15px -5px hsl(var(--color-black) / 0.05) !important;
  border-left: none !important;
  border-right: 1px solid hsl(var(--muted) / 0.2) !important;
}

.gia_sidebar_left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-accent);
}

/* Form Sections and Tab Content */
.tab-pane {
  background-color: hsl(var(--card));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.tab-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Section Headers */
.gia_div_tab_title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-6);
  position: relative;
}

.gia_div_tab_title_v_line {
  width: 4px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  margin-right: var(--space-3);
  box-shadow: var(--shadow-sm);
}

/* RTL support for section headers */
[dir="rtl"] .gia_div_tab_title_v_line {
  margin-right: 0;
  margin-left: var(--space-3);
}

.gia_div_tab_title_h {
  flex: 1;
}

.gia-headings {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: hsl(var(--foreground));
  margin: 0;
  position: relative;
  display: inline-block;
}

.gia-headings::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius);
}

/* RTL support for headings */
[dir="rtl"] .gia-headings::after {
  left: auto;
  right: 0;
}

.gia_body_line {
  height: 1px;
  background-color: hsl(var(--border));
  margin: var(--space-4) 0 var(--space-6);
  position: relative;
}

.gia_body_line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: hsl(var(--primary));
}

/* RTL support for body line */
[dir="rtl"] .gia_body_line::after {
  left: auto;
  right: 0;
}

/* Form Body */
.gia_div_tab_body {
  position: relative;
  padding: var(--space-4) 0;
}

.gia_div_tab_body_v_line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, hsl(var(--primary) / 0.5), transparent);
  border-radius: var(--radius);
}

/* RTL support for form body vertical line */
[dir="rtl"] .gia_div_tab_body_v_line {
  left: auto;
  right: 0;
}

.gia_div_tab_body_fields {
  padding-left: var(--space-4);
}

/* RTL support for form body fields */
[dir="rtl"] .gia_div_tab_body_fields {
  padding-left: 0;
  padding-right: var(--space-4);
}

/* Table titles */
.gia_div_tab_body_table_title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: hsl(var(--foreground));
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid hsl(var(--border));
}

.gia_body_table_line {
  height: 1px;
  background-color: hsl(var(--border));
  margin: var(--space-6) 0;
  opacity: 0.5;
}

/* Form Header */
.gia_forms_save_draft_bt_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}

/* .gia_forms_save_draft_bt_div::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: hsl(var(--primary));
} */

/* Button Styles - Modern & Professional */

/* Base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  line-height: 1;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary button */
.btn-primary, 
.gia_forms_save_draft_bt,
.gia_forms_submit_bt {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  height: var(--form-control-height);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 140px;
}

.btn-primary i,
.gia_forms_save_draft_bt i,
.gia_forms_submit_bt i {
  margin-right: 0.625rem;
  font-size: 1rem;
}

.btn-primary:hover,
.gia_forms_save_draft_bt:hover,
.gia_forms_submit_bt:hover {
  background-color: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active,
.gia_forms_save_draft_bt:active,
.gia_forms_submit_bt:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

/* Secondary button */
.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Outline button */
.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
}

.btn-outline:hover {
  background-color: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Ghost button */
.btn-ghost {
  background-color: transparent;
  color: hsl(var(--foreground));
  box-shadow: none;
}

.btn-ghost:hover {
  background-color: hsl(var(--muted));
  color: hsl(var(--primary));
}

/* Destructive button */
.btn-danger {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

.btn-danger:hover {
  background-color: hsl(var(--destructive) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Success button */
.btn-success {
  background-color: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

.btn-success:hover {
  background-color: hsl(var(--success) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Button sizes */
.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: var(--text-xs);
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: var(--text-base);
}

/* Disabled state */
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Button with icon only */
.btn-icon {
  padding: 0;
  width: var(--form-control-height);
  justify-content: center;
}

.btn-icon.btn-sm {
  width: 2rem;
}

.btn-icon.btn-lg {
  width: 3rem;
}

/* Section Styling - Modern Elegant Style */
.gia_div_tab_title {
  background-color: transparent;
  padding: 20px 0 16px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}

/* .gia_div_tab_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: hsl(var(--accent));
  border-radius: 2px;
} */

.gia_div_tab_title_v_line {
  display: none;
}

.gia_div_tab_title_h h4 {
  margin: 0;
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  line-height: 1.25;
  position: relative;
  display: inline-block;
}

.gia_div_tab_title_h h4::before {
  content: '\2022';
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.gia_body_line {
  display: none;
}

.gia_div_tab_body {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  overflow: hidden;
  height: auto;
  max-height: none;
  transition: all 0.3s ease;
  position: relative;
}

.gia_div_tab_body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to bottom, hsl(var(--primary)), hsl(var(--accent)));
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.gia_div_tab_body:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.3);
}

.gia_div_tab_body_v_line {
  display: none;
}

.gia_div_tab_body_fields {
  padding: 28px 32px;
}

/* Form Controls - Modern Elegant Style */
.gia_div_tab_body_label {
  display: block;
  margin-bottom: 12px;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
  position: relative;
  padding-left: 16px;
}

.gia_div_tab_body_label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: hsl(var(--accent));
  border-radius: 50%;
}




/* File Upload - Modern Elegant Style */
.attachment-file-container {
  position: relative;
  margin-bottom: 24px;
}

.current-file {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}

.current-file .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  height: 38px;
  padding: 0 16px;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.current-file .btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: none;
  box-shadow: var(--shadow-sm);
}

.current-file .btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.current-file .btn-danger {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
  border: none;
  box-shadow: var(--shadow-sm);
}

.current-file .btn-danger:hover {
  background-color: hsl(var(--destructive) / 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.form-control[type="file"] {
  padding: 14px 16px;
  border: 2px dashed hsl(var(--primary) / 0.3);
  background-color: hsl(var(--background));
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
  height: auto;
  position: relative;
  transition: all var(--transition-speed) ease;
  color: transparent; /* Hide the default text */
}

/* Hide the default file input button */
.form-control[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Hide the default file input text */
.form-control[type="file"]::file-selector-button {
  visibility: hidden;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.form-control[type="file"]::before {
  content: '📎 Choose a file';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: hsl(var(--primary));
  font-weight: 600;
  pointer-events: none;
  opacity: 0.7;
}

.form-control[type="file"]:hover {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.05);
}

.form-control[type="file"]:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

/* Navigation Buttons - Modern Elegant Style */
.gia_forms_next_prev_bt_div {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid hsl(var(--border));
}

.gia_forms_prev_bt, .gia_forms_next_bt {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.8));
  color: hsl(var(--primary-foreground));
  border: none;
  padding: 0 24px;
  height: 48px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.gia_forms_prev_bt::after, .gia_forms_next_bt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, hsl(var(--color-white) / var(--opacity-light)), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gia_forms_prev_bt i {
  margin-right: 10px;
  font-size: 0.85rem;
}

.gia_forms_next_bt i {
  margin-left: 10px;
  font-size: 0.85rem;
}

.gia_forms_prev_bt:hover, .gia_forms_next_bt:hover {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gia_forms_prev_bt:hover::after, .gia_forms_next_bt:hover::after {
  opacity: 1;
}

.gia_forms_prev_bt:active, .gia_forms_next_bt:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.gia_forms_prev_bt:disabled, .gia_forms_next_bt:disabled {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.gia_forms_prev_bt:disabled::after, .gia_forms_next_bt:disabled::after {
  display: none;
}

.gia_arrow_button {
  font-size: 1.5rem;
}

/* Submit Button - Modern Elegant Style */
.gia_body_submit_bt {
  text-align: center;
  margin: 50px 0 40px;
  position: relative;
}

.gia_body_submit_bt::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--accent)), transparent);
}

.gia_forms_submit_bt {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
  padding: 0 36px;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.gia_forms_submit_bt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, hsl(var(--color-white) / 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gia_forms_submit_bt::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, hsl(var(--color-white) / 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gia_forms_submit_bt:hover {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.gia_forms_submit_bt:hover::before {
  opacity: 1;
}

.gia_forms_submit_bt:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gia_forms_submit_bt:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.gia_forms_submit_bt i {
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Notes Section - Modern Elegant Style */
.gia_sidebar_left_notes {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-left: none;
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.gia_sidebar_left_notes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, hsl(var(--accent)), hsl(var(--primary)));
}

.gia_sidebar_left_notes::after {
  content: '\1F4DD';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.gia_sidebar_left_notes p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}

.gia_sidebar_left_notes a {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-top: 8px;
  background-color: hsl(var(--primary) / var(--opacity-light));
  border-radius: var(--radius);
}

.gia_sidebar_left_notes a::before {
  content: '\2192';
  margin-right: 8px;
  font-size: 1.1rem;
}

.gia_sidebar_left_notes a:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateX(4px);
}

/* Responsive Adjustments - Modern Elegant Style */
/* @media (max-width: 992px) {
  .gia_sidebar_right {
    width: 70px;
    box-shadow: var(--shadow-lg);
  }
  
  .gia_sidebar_left {
    margin-left: 70px;
    width: calc(100% - 70px);
  }
  
  .gia_form_name {
    padding: 20px 10px;
  }
  
  .gia_form_name a {
    display: none;
  }
  
  .gia_form_name::after {
    width: 30px;
  }
  
  .gia_sidebar_right_title span {
    display: none;
  }
  
  .gia_sidebar_right_title {
    justify-content: center;
    padding: 14px;
    margin: 6px;
    border-radius: 8px;
  }
  
  .gia_sidebar_right_icon {
    margin-right: 0;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  

  
  .gia_sidebar_right_contact_social {
    display: none;
  }
  
  .gia_sidebar_left {
    margin-left: 70px;
  }
  
  .gia_div_tab_body::before {
    width: 6px;
  }
  
  .gia_div_tab_body_fields {
    padding: 24px;
  }
} */

@media (max-width: 992px) {

  .gia_sidebar_right_social_div {
    display: none !important;
  }
  .dashboard-container {
    flex-direction: column;
  }
  
  /* Mobile sidebar - horizontal scrollable navigation */
  .gia_sidebar_right {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background-color: #0077B5; /* Using the hex color directly */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  
  /* Add scroll indicators */
  .gia_sidebar_right::before,
  .gia_sidebar_right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 101;
    pointer-events: none;
  }
  
  .gia_sidebar_right::before {
    left: 0;
    background: linear-gradient(to right, #0077B5, rgba(0, 119, 181, 0));
  }
  
  .gia_sidebar_right::after {
    right: 0;
    background: linear-gradient(to left, #0077B5, rgba(0, 119, 181, 0));
  }
  
  /* Hide the form name in mobile view */
  .gia_form_name {
    display: none;
  }
  
  /* Style the navigation items container for horizontal scrolling */
  .gia_sidebar_right_titles {
    display: flex;
    flex-direction: row;
    width: max-content;
    height: 60px;
    
    padding: 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth; /* Smooth scrolling */
    scroll-snap-type: x mandatory; /* Snap to items */
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .gia_sidebar_right_titles::-webkit-scrollbar {
    display: none;
  }
  
  /* Style each navigation link for horizontal layout */
  .gia_sidebar_right_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    margin: 0 5px;
    min-width: 100px;
    height: 60px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    color: white;
    scroll-snap-align: center; /* Snap alignment */
    transition: transform 0.3s ease;
  }
  
  /* Add subtle transform on hover to indicate interactivity */
  .gia_sidebar_right_title:hover {
    transform: translateY(-2px);
  }
  
  /* Style the active navigation link */
  .gia_sidebar_right_title.active {
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
  }
  
  /* Add indicator for active item */
  .gia_sidebar_right_title.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background-color: white;
    border-radius: 3px 3px 0 0;
  }
  
  /* Style the icons for horizontal layout */
  .gia_sidebar_right_icon {
    margin: 0 0 5px 0;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  

  .gia_sidebar_right_contact_social {
    display: none;
}
  /* Style the text labels */
  .gia_sidebar_right_title span {
    display: block;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Style the active icon */
  .gia_sidebar_right_title.active .gia_sidebar_right_icon {
    background-color: #FFFFFF;
    color: #0077B5;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    animation: pulse-glow 2s infinite;
  }
  
  /* Pulse glow animation for active icon */
  @keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
    100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
  }
  
  /* Auto-scroll to active item */
  .gia_sidebar_right_title.active {
    scroll-margin: auto;
  }
  
  /* Adjust main content to account for fixed navigation */
  .gia_sidebar_left {
    margin-left: 0;
    width: 100%;
    margin-top: 140px; /* Account for navbar + horizontal navigation */
    padding: 20px;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .gia_sidebar_right::-webkit-scrollbar {
    display: none;
  }
  
  /* Horizontal navigation items */
  .gia_sidebar_right_titles {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    height: 50px;
  }
  
  /* Remove old scrollbar hiding */
  .gia_sidebar_right_titles::-webkit-scrollbar {
    display: none;
  }
  
  /* Remove horizontal connector line */
  .gia_sidebar_right_titles::before {
    display: none;
  }
  
  .gia_sidebar_right_title {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 2;
    text-decoration: none;
    padding: 0 15px;
    margin: 0;
    height: 50px;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  
  .gia_sidebar_right_title:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .gia_sidebar_right_icon {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    background-color: hsl(var(--color-white) / 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px hsl(var(--color-black) / 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .gia_sidebar_right_title span {
    display: block !important;
    color: hsl(var(--color-white));
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .gia_sidebar_right_title.active {
    background-color: hsl(var(--color-white) / 0.15);
    position: relative;
  }
  
  .gia_sidebar_right_title.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background-color: hsl(var(--accent));
    border-radius: 0 0 3px 3px;
  }
  
  .gia_sidebar_right_title.active .gia_sidebar_right_icon {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: 0 0 10px hsl(var(--accent) / 0.5);
  }
  
  /* Completed steps */
  .gia_sidebar_right_title.completed .gia_sidebar_right_icon {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    
    .gia_sidebar_right_title {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      text-decoration: none;
      padding: 5px 15px;
      margin: 0 5px;
      min-width: 100px;
      height: 60px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    
    .gia_sidebar_right_icon {
      margin: 0 0 5px 0;
      width: 40px;
      height: 40px;
      background-color: hsl(var(--color-white) / 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px hsl(var(--color-black) / 0.2);
      transition: all 0.3s ease;
      font-size: 1rem;
    }
    
    .gia_sidebar_right_title span {
      display: block !important;
      color: hsl(var(--color-white));
      font-size: 0.8rem;
      font-weight: 500;
      text-align: center;
      max-width: 80px;
    }
    
    .gia_sidebar_right_title.active {
      background-color: hsl(var(--color-white) / 0.1);
      position: relative;
    }
    
    .gia_sidebar_right_title.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 3px;
      background-color: hsl(var(--accent));
      border-radius: 3px 3px 0 0;
    }
    
    .gia_sidebar_right_title.active .gia_sidebar_right_icon {
      background-color: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      box-shadow: 0 0 10px hsl(var(--accent) / 0.5);
    }
    
    /* Completed steps */
    .gia_sidebar_right_title.completed .gia_sidebar_right_icon {
      background-color: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }
  }
  
  /* Add a toggle button to show/hide expanded sidebar */
  .mobile-sidebar-toggle {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 60;
    cursor: pointer;
    border: 2px solid hsl(var(--accent));
    transition: all 0.3s ease;
  }
  
  /* Expanded sidebar for mobile */
  .gia_sidebar_right.expanded {
    height: calc(100vh - 75px);
    top: 75px; /* Position below the navbar */
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    transition: all 0.3s ease;
    overflow-y: auto;
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 45; /* Higher than fixed sidebar but lower than navbar */
  }
  
  .gia_sidebar_right::before {
    opacity: 0.05;
  }
  
  .gia_form_name {
    display: none;
  }
  
  .gia_sidebar_right_titles {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    align-items: stretch;
  }
  
  .gia_sidebar_right_title {
    margin: 0;
    padding: 15px 10px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-left: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid hsl(var(--color-white) / 0.1);
    text-decoration: none;
  }
  
  /* No connector lines needed for this layout */
  
  .gia_sidebar_right_title span {
    display: none;
  }
  
  .gia_sidebar_right_title.active {
    background-color: transparent;
  }
  
  /* Mark completed steps */
  .gia_sidebar_right_title.completed::before {
    background-color: hsl(var(--accent) / 0.5);
  }
  
  .gia_sidebar_right_icon {
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--color-white) / var(--opacity-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px hsl(var(--color-black) / 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 1rem;
  }
  
  /* Dynamic step numbers using CSS counter */
  .gia_sidebar_right_titles {
    counter-reset: step-counter;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
  
  .gia_sidebar_right_title .gia_sidebar_right_icon::after {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px hsl(var(--color-black) / 0.2);
  }
  
  .gia_sidebar_right_title.active .gia_sidebar_right_icon {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: 0 0 15px hsl(var(--accent) / 0.6);
    transform: scale(1.15);
    border: 2px solid hsl(var(--color-white));
  }
  
  /* Show labels in expanded mode */
  .gia_sidebar_right.expanded .gia_sidebar_right_title {
    padding: 14px 16px;
    justify-content: flex-start;
    border-bottom: none;
    border-inline-start: 3px solid transparent;
    margin: 4px 12px;
    border-radius: var(--radius);
  }
  
  .gia_sidebar_right.expanded .gia_sidebar_right_title span {
    display: block;
    margin-inline-start: 12px;
    font-size: 0.95rem;
  }
  
  .gia_sidebar_right.expanded .gia_sidebar_right_title.active {
    border-inline-start-color: hsl(var(--accent));
    border-bottom: none;
  }
  
  .gia_sidebar_right.expanded .gia_form_name {
    display: block;
  }
  
  .gia_sidebar_left {
    margin-left: 0;
    width: 100%;
    margin-top: 0px; /* Account for navbar only */
    margin-bottom: 20px;
    padding: 24px 20px !important;
  }
  
  .gia_div_tab_title_h h4 {
    font-size: 1.3rem;
  }
  
  .gia_div_tab_title_h h4::before {
    left: -15px;
    font-size: 1.3rem;
  }
  
  .gia_div_tab_body_fields {
    padding: 20px;
  }
  
  .gia_forms_next_prev_bt_div {
    flex-direction: column;
    gap: 16px;
  }
  
  .gia_forms_prev_bt, .gia_forms_next_bt {
    width: 100%;
  }
  
  .gia_forms_submit_bt {
    width: 100%;
  }
}

/* Dynamic Tables Styling */
.dynamic-table-container {
  position: relative;
  margin-bottom: var(--space-4);
  border-radius: var(--radius);
  overflow: hidden;
}

.card_body_tb {
  padding: var(--space-4);
  background-color: hsl(var(--card));
  border-radius: var(--radius);
}

#dynamic_table_offerings_input_card,
#dynamic_table_investment_project_utilities_needs_input_card,
#dynamic_table_investment_project_investment_funding_input_card {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: var(--space-6);
  background-color: hsl(var(--card));
}

.gia_col_style {
  font-weight: var(--font-semibold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: var(--text-xs);
}

.dynamic-list-item td {
  padding: var(--space-2) !important;
  vertical-align: middle;
}

.dynamic-list-item .form-control,
.dynamic-list-item .form-select {
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.dynamic-list-item .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 1.5px solid hsl(var(--border));
}

.dynamic-list-item .form-check-input:checked {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.btn-success-gia.add-row {
  background-color: hsl(var(--success));
  color: hsl(var(--success-foreground));
  border: none;
  border-radius: var(--radius-full);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-2) auto;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-success-gia.add-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: hsl(var(--success) / 0.9);
}

.btn-success-gia.add-row:active {
  transform: translateY(0);
}

.btn-danger.remove-row {
  background-color: transparent;
  color: hsl(var(--destructive));
  border: none;
  border-radius: var(--radius-full);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  font-size: var(--text-lg);
}

.btn-danger.remove-row:hover {
  background-color: hsl(var(--destructive) / 0.1);
  color: hsl(var(--destructive));
}

/* Table Responsive Improvements */
@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gia_sidebar_right_contact_social {
    display: none;
  }
  
  .dynamic-list-item td {
    white-space: nowrap;
  }
  
  .dynamic-list-item .form-control,
  .dynamic-list-item .form-select {
    min-width: 120px;
  }
}

/* Animation for form elements */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation Classes - Shadcn UI Style */
.fade-in {
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.slide-in-right {
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-up {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.scale-in {
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.scale-out {
  animation: scaleOut 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.95);
}

@keyframes scaleOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.95); opacity: 0; }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}



/* Toast Component - Modern Elegant Style */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  max-width: 420px;
}

.toast {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 1.2);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, transparent, currentColor, transparent);
  opacity: 0.8;
}

.toast-icon {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.toast-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.toast-close {
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 12px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.toast-close:hover {
  background-color: hsl(var(--muted) / 0.3);
  color: hsl(var(--foreground));
  opacity: 1;
  transform: rotate(90deg);
}

.toast-success {
  border-left: none;
  color: hsl(var(--success));
}

.toast-success .toast-icon {
  background-color: hsl(var(--success) / 0.2);
  color: hsl(var(--success));
}

.toast-error {
  border-left: none;
  color: hsl(var(--destructive));
}

.toast-error .toast-icon {
  background-color: hsl(var(--destructive) / 0.2);
  color: hsl(var(--destructive));
}

.toast-info {
  border-left: none;
  color: hsl(var(--primary));
}

.toast-info .toast-icon {
  background-color: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}

.toast-hide {
  transform: translateX(120%);
  opacity: 0;
}

/* Theme Toggle Button - Shadcn UI Style */
.theme-toggle {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.theme-toggle:hover {
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
}

/* Fix for social media icons to stay visible when scrolling */
/* .gia_sidebar_right_social_div {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

 .gia_sidebar_right_social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: hsl(var(--color-white) / var(--opacity-light));
  color: hsl(var(--primary-foreground));
  transition: all var(--transition-speed) ease;
}

.gia_sidebar_right_social:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 
 */


 .gia_sidebar_right_contact_social {
  display: none;
}

 /* Sticky Sidebar Styles for GIA Investment Services */

/* Main sidebar container */
.gia_sidebar_right {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important; /* Distance from the top of the viewport */
  max-height: 100vh !important; /* Full viewport height */
  overflow-y: auto !important; /* Enable scrolling for long sidebar content */
  z-index: 1000 !important; /* Ensure sidebar appears above other content */
  transition: all 0.3s ease !important;
  padding-bottom: 20px !important;

}

/* Sidebar form name styling */
.gia_form_name {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 15px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}

.gia_form_name a {
  color: var(--text-light);
  text-decoration: none;
}

/* Sidebar navigation container */
.gia_sidebar_right_titles {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}

/* Individual sidebar navigation items */
.gia_sidebar_right_title {
  padding: 12px 15px;
  color: var(--text-light);
  border-left: 4px solid transparent;
  transition: all var(--transition-normal);
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gia_sidebar_right_title:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--text-light);
  color: var(--text-light);
}

.gia_sidebar_right_title.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--text-light);
  color: var(--text-light);
  font-weight: 600;
}

/* Sidebar icons */
.gia_sidebar_right_icon {
  margin-right: 8px;
  color: var(--text-light);
}

.gia_sidebar_right_icon.fa-exclamation-triangle {
  color: var(--warning);
  margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gia_sidebar_right {

    top: 0;
    height: auto;
    max-height: 100vh;
    margin-bottom: 20px;
    z-index: 1000;
    position: -webkit-sticky !important;
  position: sticky !important;
  }
  
  .gia_sidebar_right_titles {

    max-height: 50vh;
    overflow-y: auto;
  }
}
