/*!
Version: 1.0
Author: Ankit Hingarajiya - DeskApp
*/

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #64ffda;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ff6b6b;
  --orange: #fd7e14;
  --yellow: #ffd700;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #4361ee;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #ff6b6b;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* ... [Standard Bootstrap Reset - Unchanged] ... */

/* -------------------------------------------------
    Common Styles Initials
-------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input[type="submit"] {
  -webkit-appearance: none; }

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  color: #e6f1ff;
  width: 100%;
  height: 100%;
  background: #020c1b; }

a {
  outline: none;
  text-decoration: none;
  color: #64ffda; }

a:hover, a:focus {
  outline: none;
  text-decoration: none; }

img {
  border: 0; }

input, textarea, select {
  outline: none;
  resize: none;
  font-family: 'Work Sans', sans-serif; }

a, input, button {
  outline: none !important; }

button::-moz-focus-inner {
  border: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: #e6f1ff;
  font-family: 'Work Sans', sans-serif; }

/* ... [Rest of common styles - Unchanged] ... */

/*==============================================================
    Global Styles Start
==============================================================*/
.pre-loader {
  background: url(../images/new-loader.gif) no-repeat #020c1b;
  background-position: center center;
  background-size: 13%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 12345; }

.bg-white {
  background: rgba(10, 25, 47, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-light-gray {
  background-color: #020c1b; }

.color-white {
  color: #e6f1ff; }

.bg-blue {
  background-color: #4361ee; }

.text-blue {
  color: #64ffda; }

.bg-light-blue {
  background-color: rgba(100, 255, 218, 0.1); }

.text-light-blue {
  color: #8892b0; }

.bg-light-purple {
  background-color: #a683eb; }

.text-light-purple {
  color: #a683eb; }

.bg-orange {
  background-color: #f5956c; }

.text-orange {
  color: #f5956c; }

.text-light-green {
  color: #64ffda; }

.border-radius-4 {
  border-radius: 4px; }

.border-radius-5 {
  border-radius: 5px; }

.border-radius-6 {
  border-radius: 6px; }

.box-shadow {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); }

.dropdown-menu {
  border-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  background: #112240; }

.dropdown-item {
  font-size: 15px;
  font-weight: 400;
  padding: 0.55rem 1rem;
  color: #8892b0;
  font-family: 'Work Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.dropdown-item:hover, .dropdown-item:focus {
  background: rgba(100, 255, 218, 0.05);
  color: #e6f1ff; }

.form-control {
  font-family: 'Work Sans', sans-serif;
  color: #e6f1ff;
  font-weight: 500;
  height: 38px;
  letter-spacing: 0.035em;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1); }

textarea.form-control {
  height: 180px; }

.form-control:focus {
  color: #e6f1ff;
  background: rgba(0, 0, 0, 0.2);
  border-color: #64ffda;
  -webkit-box-shadow: 0 0 0 1px rgba(100, 255, 218, 0.2);
  box-shadow: 0 0 0 1px rgba(100, 255, 218, 0.2); }

/*==============================================================
    Header Start
==============================================================*/
.header {
  position: fixed;
  height: 70px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 123; }

.header-right {
  float: right;
  width: calc(100% - 250px);
  background: #0a192f;
  height: 70px;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.header-right .brand-logo {
  float: left;
  margin-right: 10px;
  width: 70px;
  display: none; }

.header-right .brand-logo a {
  padding: 0px 6px 0px; }

.header-right .menu-icon {
  position: relative;
  right: 0;
  float: left;
  display: none; }

.user-info-dropdown {
  float: right;
  padding: 10px 20px 10px 0; }

.user-info-dropdown .dropdown-toggle {
  display: block;
  padding: 10px 0;
  font-size: 16px; }

.user-info-dropdown .dropdown-toggle .user-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #64ffda;
  color: #64ffda;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%; }

.user-info-dropdown .dropdown-toggle .user-name {
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  color: #e6f1ff;
  font-family: 'Work Sans', sans-serif; }

.user-notification {
  float: right;
  margin-right: 30px;
  padding: 22px 20px 10px 0; }

.user-notification .dropdown-toggle {
  font-size: 20px;
  padding: 10px;
  color: #8892b0;
  position: relative; }

.user-notification .dropdown-toggle .badge {
  position: absolute;
  right: 8px;
  top: 10px;
  background: #ff6b6b;
  width: 5px;
  height: 5px;
  display: block;
  padding: 0; }

.user-notification .dropdown-menu {
  width: 340px; }

/*==============================================================
    Side Bar Start
==============================================================*/
.brand-logo {
  width: 250px;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: table;
  background: #0a192f; }

.brand-logo a {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  font-size: 22px;
  color: #64ffda;
  letter-spacing: 0.050em;
  font-weight: 500;
  line-height: 45px;
  font-family: 'Work Sans', sans-serif;
  padding: 0px 20px 0px;
  text-align: center; }

.left-side-bar {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100vh;
  z-index: 1000;
  background: #0a192f;
  -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.left-side-bar .menu-block {
  height: calc(100vh - 70px);
  background: #0a192f; }

.sidebar-menu {
  padding: 20px 0px 20px; }

.sidebar-menu .dropdown-toggle {
  display: block;
  padding: 10px 15px 10px 60px;
  font-size: 16px;
  color: #8892b0;
  font-weight: 500;
  position: relative;
  font-family: 'Work Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.sidebar-menu .dropdown-toggle:after {
  position: absolute;
  right: 15px;
  font-size: 18px;
  color: #8892b0; }

.sidebar-menu .dropdown-toggle:hover, .sidebar-menu .show > .dropdown-toggle {
  background: rgba(100, 255, 218, 0.05);
  color: #64ffda; }

.sidebar-menu .dropdown-toggle .fa {
  position: absolute;
  left: 20px;
  font-size: 18px;
  color: #8892b0;
  width: 26px;
  top: 13px;
  text-align: center; }

.sidebar-menu .dropdown-toggle:hover .fa, .sidebar-menu .show > .dropdown-toggle .fa {
  color: #64ffda; }

.sidebar-menu .submenu {
  position: relative;
  width: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.2); }

.sidebar-menu .submenu li a {
  display: block;
  padding: 10px 15px 10px 60px;
  font-size: 14px;
  color: #8892b0;
  font-weight: 500;
  position: relative;
  font-family: 'Work Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.sidebar-menu .submenu li a:hover, .sidebar-menu .submenu li a.active {
  color: #64ffda; }

.sidebar-menu .dropdown-toggle.active, .sidebar-menu .dropdown-toggle.active .fa {
  color: #64ffda;
  background: rgba(100, 255, 218, 0.05); }

/*==============================================================
    Main Container
==============================================================*/
.main-container {
  padding: 70px 0 0px 250px;
  height: 100vh;
  background: #020c1b; }

/*==============================================================
    Cards & Tables
==============================================================*/
.card {
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table th {
  font-weight: 600;
  color: #8892b0;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.table td {
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #e6f1ff;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.2);
}

.table-hover tbody tr:hover {
  background-color: rgba(100, 255, 218, 0.05);
}

/*==============================================================
    Footer
==============================================================*/
.footer-wrap {
  width: 100%;
  position: relative;
  text-align: center;
  font-weight: 500;
  color: #8892b0;
  background: transparent; }

/* ... [Rest of the file remains mostly unchanged, 
       assuming standard Bootstrap classes are overridden by the specific 
       changes above or inline styles where necessary] ... */

@media (max-width: 1200px) {
  .main-container {
    padding-left: 0; }
  .header-right {
    width: 100%; }
  .left-side-bar {
    left: -251px; }
  .left-side-bar.open {
    left: 0; }
  .header-right .brand-logo {
    display: table; }
  .header-right .menu-icon {
    display: block; }
  .footer-wrap {
    width: 100%; } }