/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* NOTE: all HSL values below converted to hex (including hsl(var(--x))
 * calls further down this file, which are now plain var(--x) references
 * since the variables themselves store hex colors). Where an
 * alpha/opacity was applied via hsl(var(--x) / N), the value has been
 * pre-computed into an 8-digit hex (#RRGGBBAA) literal.
 */
:root {
    --background: #FFFFFF;
    --foreground: #243342;
    --card: #FFFFFF;
    --card-foreground: #243342;
    --popover: #FFFFFF;
    --popover-foreground: #243342;
    --primary: #FF4400;
    --primary-foreground: #FFFFFF;
    --secondary: #2E95B8;
    --secondary-foreground: #FFFFFF;
    --muted: #F3F5F7;
    --muted-foreground: #6C8093;
    --accent: #2E95B8;
    --accent-foreground: #FFFFFF;
    --destructive: #EF4343;
    --destructive-foreground: #FFFFFF;
    --warning: #F59F0A;
    --warning-foreground: #243342;
    --border: #E0E6EB;
    --input: #E0E6EB;
    --ring: #FF4400;
    --radius: .5rem;
    --navy: #243342;
    --cyan: #00B4F0;
    --orange: #FF4400;
    --teal: #2E95B8;
    --teal-light: #73CBE8;
    --warm-bg: #FAF7F5;
    --surface: #F3F5F7;
    --surface-hover: #EAEDF0;
    --gradient-hero: linear-gradient(135deg, #243342, #394D60);
    --success: #2BAB6F;
    --success-foreground: #FFFFFF;
    --shadow-card: 0 4px 20px -4px #A3B3C24D;
    --shadow-hover: 0 8px 30px -4px #8599AD4D;
    --sidebar-background: #FFFFFF;
    --sidebar-foreground: #243342;
    --sidebar-primary: #FF4400;
    --sidebar-primary-foreground: #FFFFFF;
    --sidebar-accent: #F3F5F7;
    --sidebar-accent-foreground: #243342;
    --sidebar-border: #E0E6EB;
    --sidebar-ring: #FF4400;
    --huk-green: #2fbf71;
}


.text-primary {
    color: var(--primary) !important;
}

header.header .search {
    width: 325px;
    border: 1px solid var(--border);
}
header.header .search .btn, header.header .search .form-control {
    height: 2.5rem;
}

header.header .navbar-nav {
    margin-top: unset;
    margin-bottom: unset;
}

header.header .dropdown-menu {
    position: absolute;
    left: -2em;
    top: 1.5em;
    width: fit-content;
}

.lucide-trash2 {
    height: 1.5em;
    width: auto;
}

[style*="background-color:#ffffd2"][style*="font-size:16px"][style*="text-align:center"] {
    display: none !important;
}

.navbar-nav #Secondary_Navbar-Account > a {
  color: var(--primary);
  background: #FF44000D;
  padding: 0.3em 0.85em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #FF440040;
}

.navbar-nav #Secondary_Navbar-Account > a:hover {
  color: white;
  background-color: #FF4400E6;
  box-shadow: 0 4px 15px -3px #FF440066;
}