/* 
 * Refined Style CSS
 * Enhanced styling for GlivCODEveryWhere
 * This file overrides styles from main_style.php
 */

/* Global Styles */
:root {
  --primary-color: #444f7d;
  --secondary-color: #F2CE14;
  --text-color: #242424;
  --light-text: #777777;
  --bg-color: #FFFFFF;
  --error-color: #CC0000;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
  --transition-speed: 0.3s;
}

body {
  font-family: 'Roboto', 'Cairo', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Login Page Styles */
.lx-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.lx-left-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 40%;
  height: 100%;
  background: var(--bg-color);
  box-shadow: 0 0 30px var(--shadow-color);
  z-index: 2;
}

.lx-right-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--secondary-color) url('../images/bg.png') no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all var(--transition-speed) ease;
  z-index: 1;
}

.lx-right-bg-shadow div {
  position: absolute;
  bottom: 60px;
  right: 60px;
  color: #242424;
  text-align: right;
  animation: fadeInUp 1s ease-out;
}

.lx-right-bg-shadow div strong {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.lx-right-bg-shadow div h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Login Form Styles */
.lx-login {
  margin: auto;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lx-login-content {
  max-width: 380px;
  width: 100%;
  margin: auto;
  padding: 40px 30px;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-out;
}

.lx-login-content img {
  display: block;
  width: 70%;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 30px;
  transition: transform var(--transition-speed) ease;
}

.lx-login-content img:hover {
  transform: scale(1.05);
}

.lx-login-content h1 {
  margin-bottom: 20px;
  font-family: 'Bitter', serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-color);
}

.lx-login-content h2 {
  margin-bottom: 30px;
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-color);
}

/* Form Elements */
.lx-textfield {
  margin-bottom: 20px;
  position: relative;
}

.lx-textfield label {
  position: relative;
}

.lx-textfield input[type="text"],
.lx-textfield input[type="password"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: all var(--transition-speed) ease;
  background-color: #f9f9f9;
}

.lx-textfield input[type="text"]:focus,
.lx-textfield input[type="password"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.2);
  background-color: #fff;
  outline: none;
}

.lx-textfield input[type="text"]::placeholder,
.lx-textfield input[type="password"]::placeholder {
  color: #aaa;
}

.lx-textfield i.fa-eye-slash {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

.lx-textfield i.fa-eye-slash:hover {
  color: var(--primary-color);
}

/* Checkbox Styling */

.lx-textfield .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
}

.lx-textfield label:hover input[type="checkbox"] ~ .checkmark {
  background-color: #f0f0f0;
}

.lx-textfield input[type="checkbox"]:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.lx-textfield .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.lx-textfield input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lx-textfield label[style="float:left;"] {
  padding-left: 30px;
  font-size: 14px;
  color: var(--light-text);
  cursor: pointer;
}

/* Password Forgotten Link */
.lx-password-forgotten {
  float: right;
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.lx-password-forgotten:hover {
  color: #d03651;
  text-decoration: underline;
}

/* Login Error Message */
.lx-login-error {
  margin-bottom: 20px;
  padding: 12px 15px;
  color: var(--error-color);
  background-color: rgba(204, 0, 0, 0.1);
  border: 1px solid var(--error-color);
  border-radius: var(--border-radius);
  font-size: 14px;
  text-align: center;
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Submit Button */
.lx-submit {
  margin-top: 30px;
}

.lx-submit a {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 6px rgba(236, 71, 96, 0.2);
  cursor: pointer;
}

.lx-submit a:hover {
  background: #d03651;
  box-shadow: 0 6px 8px rgba(236, 71, 96, 0.3);
  transform: translateY(-2px);
}

.lx-submit a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(236, 71, 96, 0.2);
}

/* Clear Fix */
.lx-clear-fix {
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .lx-left-bg {
    width: 100%;
    padding: 0;
  }
  
  .lx-right-bg {
    display: none;
  }
  
  .lx-login-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .lx-login-content {
    padding: 30px 20px;
  }
  
  .lx-login-content h1 {
    font-size: 28px;
  }
  
  .lx-login-content h2 {
    font-size: 18px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translateX(-1px);
  }
  20%, 80% {
    transform: translateX(2px);
  }
  30%, 50%, 70% {
    transform: translateX(-4px);
  }
  40%, 60% {
    transform: translateX(4px);
  }
}

/* Main Menu Enhanced Styles - Modern Floating Design with Gradient */
.lx-main-leftside {
  position: fixed;
  z-index: 10;
  top: 20px;
  left: 20px;
  width: 280px;
  height: calc(100% - 40px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 252, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Logo styling - Modern Floating Design with Gradient */
.lx-logo {
  padding: 20px;
  text-align: center;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 5;
  background: linear-gradient(to right, rgba(252, 252, 255, 0.95), rgba(248, 248, 252, 0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 5px;
}

.lx-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(68, 79, 125, 0.4), rgba(242, 206, 20, 0.3), transparent);
}

.lx-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.lx-logo a:hover {
  transform: scale(1.05);
}

.lx-logo img {
  max-width: 100%;
  height: auto;
}

/* Main menu styling - Modern Floating Design */
.lx-main-menu {
  position: relative;
  padding: 0;
  height: calc(100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lx-main-menu ul::-webkit-scrollbar {
  width: 4px;
}

.lx-main-menu ul::-webkit-scrollbar-track {
  background: transparent;
}

.lx-main-menu ul::-webkit-scrollbar-thumb {
  background-color: rgba(236, 71, 96, 0.3);
  border-radius: 10px;
}

.lx-main-menu ul {
  margin: 15px 15px 0;
  padding: 0 5px 15px 0;
  list-style: none;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(236, 71, 96, 0.3) transparent;
}

.lx-main-menu ul li {
  position: relative;
  margin-bottom: 3px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.lx-main-menu ul li > i {
  position: absolute;
  top: 18px;
  right: 15px;
  cursor: pointer;
  color: #999;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lx-main-menu ul li:hover > i {
  color: #444f7d;
}

.lx-main-menu ul li a {
  position: relative;
  display: block;
  padding: 14px 15px;
  font-family: 'Roboto', 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 3px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
}

.lx-main-menu ul li a.active {
  font-weight: 500;
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: #fff;
  box-shadow: 0 4px 15px rgba(68, 79, 125, 0.25);
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lx-main-menu ul li a:hover:not(.active) {
  background: linear-gradient(135deg, rgba(68, 79, 125, 0.05), rgba(68, 79, 125, 0.1));
  color: #444f7d;
  transform: translateY(-1px);
  border: 1px solid rgba(68, 79, 125, 0.1);
}

.lx-main-menu ul li a i {
  position: relative;
  display: inline-block;
  width: 24px;
  margin-right: 8px;
  font-size: 16px;
  text-align: center;
  color: #777;
  transition: color 0.2s ease;
}

.lx-main-menu ul li a.active i {
  color: #fff;
}

.lx-main-menu ul li a:hover:not(.active) i {
  color: #444f7d;
}

/* Submenu styling - Modern Floating Design with Gradient */
.lx-main-menu ul ul {
  display: none;
  position: relative;
  margin: 5px 0 5px 10px;
  padding: 5px 0 5px 15px;
  background: linear-gradient(to bottom right, rgba(250, 250, 255, 0.7), rgba(245, 245, 250, 0.7));
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.lx-main-menu ul ul::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  height: calc(100% - 15px);
  width: 2px;
  background: linear-gradient(to bottom, rgba(236, 71, 96, 0.4), rgba(242, 206, 20, 0.3));
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(236, 71, 96, 0.1);
}

.lx-main-menu ul ul li {
  position: relative;
  margin: 2px 0;
}

.lx-main-menu ul ul li a {
  margin-left: 10px;
  padding: 12px 10px;
  font-weight: 400;
  color: #666;
  border-radius: 6px;
}

.lx-main-menu ul ul li a.active {
  font-weight: 500;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.8), rgba(255, 255, 255, 0.8));
  color: #444f7d;
  box-shadow: 0 2px 8px rgba(68, 79, 125, 0.1);
  border: 1px solid rgba(68, 79, 125, 0.1);
}

.lx-main-menu ul ul li a:hover:not(.active) {
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.5), rgba(255, 255, 255, 0.5));
  color: #444f7d;
  border: 1px solid rgba(68, 79, 125, 0.05);
}

/* Notification badges - Modern Floating Design */
.lx-main-menu ul li a span {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(68, 79, 125, 0.2);
}

.lx-main-menu ul li a:hover span {
  transform: scale(1.1);
}

/* Mobile menu toggle */
.lx-mobile-menu-hide {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  color: #444f7d;
  font-size: 24px;
  cursor: pointer;
  z-index: 6;
  transition: all 0.3s ease;
}

.lx-mobile-menu-hide:hover {
  transform: scale(1.1);
}

/* Main content styling - Modern Floating Design */
.lx-main-content {
  padding: 70px 20px 20px 320px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(249, 249, 249, 0.5), rgba(255, 255, 255, 0.8));
}

@media (max-width: 1023px) {
  .lx-main-leftside {
    left: -300px;
    top: 0;
    height: 100%;
    border-radius: 0 16px 16px 0;
    box-shadow: none;
  }
  
  .lx-main-leftside.active {
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
  
  .lx-mobile-menu-hide {
    display: block;
  }
  
  .lx-main-content {
    padding-left: 0;
  }
}

/* Animation for submenu */
@keyframes fadeInSubmenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lx-main-menu ul ul.show {
  display: block;
  animation: fadeInSubmenu 0.3s ease-out;
}

/* Modern Card Styling */
.lx-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lx-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lx-card-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Modern Button Styling */
.lx-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(68, 79, 125, 0.2);
  text-decoration: none;
}

.lx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(68, 79, 125, 0.3);
}

.lx-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(68, 79, 125, 0.2);
}

.lx-btn-secondary {
  background: linear-gradient(135deg, #F2CE14, #f5d742);
  box-shadow: 0 4px 10px rgba(242, 206, 20, 0.2);
}

.lx-btn-secondary:hover {
  box-shadow: 0 6px 15px rgba(242, 206, 20, 0.3);
}

.lx-btn-outline {
  background: transparent;
  border: 2px solid #444f7d;
  color: #444f7d;
  box-shadow: none;
}

.lx-btn-outline:hover {
  background: rgba(68, 79, 125, 0.05);
  box-shadow: 0 4px 10px rgba(68, 79, 125, 0.1);
}

/* Modern Table Styling */
.lx-table-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
}

.lx-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.lx-table th {
  background: #f8f8f8;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #eee;
}

.lx-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #666;
  transition: background 0.2s ease;
}

.lx-table tr:hover td {
  background: rgba(236, 71, 96, 0.03);
}

.lx-table tr:last-child td {
  border-bottom: none;
}

/* Modern Form Elements */
.lx-form-group {
  margin-bottom: 20px;
}

.lx-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.lx-form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.lx-form-control:focus {
  outline: none;
  border-color: #444f7d;
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
  background: white;
}

/* Modern Floating Stats Cards */
.lx-stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.lx-stat-card {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.lx-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.lx-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ec4760, #F2CE14);
}

.lx-stat-card h3 {
  font-size: 14px;
  color: #777;
  margin: 0 0 10px 0;
}

.lx-stat-card .value {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.lx-stat-card .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: rgba(236, 71, 96, 0.2);
}

/* Stats Bloc Styling */
.lx-stats-bloc {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 255, 0.95));
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.lx-stats-bloc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ec4760, #F2CE14);
}

.lx-stats-bloc h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Workers State List */
.lx-workers-state {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lx-workers-state li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 14px;
  color: #555;
}

.lx-workers-state li:last-child {
  border-bottom: none;
}

.lx-workers-state li i {
  margin-right: 10px;
  font-size: 12px;
}

.lx-workers-state li i.lx-connected {
  color: #4CAF50;
}

.lx-workers-state li i.lx-disconnected {
  color: #F44336;
}

.lx-workers-state li i.lx-halfconnected {
  color: #FFC107;
}

/* Keyword Filter Section */
.lx-keyword {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lx-keyword label {
  flex: 1;
  min-width: 200px;
}

.lx-keyword label input[type="text"],
.lx-keyword label select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

.lx-keyword label input[type="text"]:focus,
.lx-keyword label select:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
  background: white;
}

.lx-keyword label select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23ec4760"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 30px;
}

/* Advanced Select Styling */
.lx-advanced-select {
  position: relative;
  width: 100%;
}

/* Input Styling */
.lx-advanced-select input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  cursor: pointer;
  padding-right: 35px; /* Space for the caret icon */
}

.lx-advanced-select input[type="text"]:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
  background: white;
}

/* Caret Icon */
.lx-advanced-select i.fa-caret-down {
  position: absolute;
  right: 15px;
  top: 20px;
  transform: translateY(-50%);
  color: #444f7d;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.lx-advanced-select.active i.fa-caret-down {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Panel */
.lx-advanced-select > div {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  width: auto;
  max-width:300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.98));
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 100;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  scrollbar-width: thin;
  scrollbar-color: rgba(236, 71, 96, 0.3) transparent;
  animation: fadeInDropdown 0.2s ease-out;
}

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

/* Scrollbar Styling */
.lx-advanced-select > div::-webkit-scrollbar {
  width: 4px;
}

.lx-advanced-select > div::-webkit-scrollbar-track {
  background: transparent;
}

.lx-advanced-select > div::-webkit-scrollbar-thumb {
  background-color: rgba(236, 71, 96, 0.3);
  border-radius: 10px;
}

/* Action Buttons */
.lx-advanced-select > div a.lx-state-empty,
.lx-advanced-select > div a.lx-state-filter {
  display: inline-block;
  width: auto;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.9), rgba(255, 255, 255, 0.9));
  border-radius: 8px;
  margin-right: 8px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.lx-advanced-select > div a:hover {
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(236, 71, 96, 0.2);
}

/* Search Input */
.lx-advanced-select > div input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.lx-advanced-select > div input[type="text"]:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
}

/* Options List */
.lx-advanced-select > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.lx-advanced-select > div ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lx-advanced-select > div ul li:last-child {
  border-bottom: none;
}

/* Checkbox Styling */
.lx-advanced-select > div ul li label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 30px;
}

.lx-advanced-select > div ul li label:hover {
  color: #444f7d;
}

.lx-advanced-select > div ul li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.lx-advanced-select > div ul li .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lx-advanced-select > div ul li label:hover input[type="checkbox"] ~ .checkmark {
  background-color: #f0f0f0;
}

.lx-advanced-select > div ul li input[type="checkbox"]:checked ~ .checkmark {
  background-color: #444f7d;
  border-color: #444f7d;
}

.lx-advanced-select > div ul li .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.lx-advanced-select > div ul li input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Active State */
.lx-advanced-select.active input[type="text"] {
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
}

/* Table Styling */
.lx-stats-bloc table {
  width: 100%;
  border-collapse: collapse;
}

.lx-stats-bloc table tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.02);
}

.lx-stats-bloc table tr:hover {
  background: rgba(68, 79, 125, 0.05);
}

.lx-stats-bloc table td,
.lx-stats-bloc table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #555;
}

.lx-stats-bloc table th {
  font-weight: 600;
  color: #333;
  background: rgba(0, 0, 0, 0.03);
}

.lx-stats-bloc table tr:last-child td {
  border-bottom: none;
}

/* Notices Item Styling */
.lx-notices-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 255, 0.95));
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.lx-notices-item i.fa-info-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: rgba(236, 71, 96, 0.5);
}

.lx-notices-item p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.lx-notices-item img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-stats-bloc {
    padding: 20px 15px;
  }
  
  .lx-keyword {
    flex-direction: column;
    gap: 10px;
  }
  
  .lx-keyword label {
    width: 100%;
  }
}

/* Page Header Styling */
.lx-page-header {
  position: relative;
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 15px;
}

.lx-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(236, 71, 96, 0.5), rgba(242, 206, 20, 0.3), transparent);
}

.lx-page-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
}

.lx-page-header h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: linear-gradient(to bottom, #ec4760, #F2CE14);
  border-radius: 3px;
}

/* Page Header Actions */
.lx-page-header .lx-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lx-page-header .lx-actions a,
.lx-page-header .lx-actions button {
  padding: 10px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 252, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.lx-page-header .lx-actions a:hover,
.lx-page-header .lx-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  color: #444f7d;
}

.lx-page-header .lx-actions a i,
.lx-page-header .lx-actions button i {
  color: #444f7d;
  font-size: 16px;
}

.lx-page-header .lx-actions a.lx-primary,
.lx-page-header .lx-actions button.lx-primary {
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: white;
  border: none;
}

.lx-page-header .lx-actions a.lx-primary i,
.lx-page-header .lx-actions button.lx-primary i {
  color: white;
}

/* Breadcrumb Styling */
.lx-page-header .lx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  width: 100%;
}

.lx-page-header .lx-breadcrumb a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lx-page-header .lx-breadcrumb a:hover {
  color: #444f7d;
}

.lx-page-header .lx-breadcrumb span {
  color: #aaa;
  font-size: 12px;
}

.lx-page-header .lx-breadcrumb .lx-active {
  color: #444f7d;
  font-weight: 500;
}

/* Padding Utility Classes */
.lx-pb-5 {
  padding-bottom: 25px;
}

.lx-pt-5 {
  padding-top: 25px;
}

.lx-py-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.lx-px-5 {
  padding-left: 25px;
  padding-right: 25px;
}

/* Responsive Adjustments for Page Header */
@media (max-width: 768px) {
  .lx-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .lx-page-header h2 {
    font-size: 24px;
  }
  
  .lx-page-header h2::before {
    height: 24px;
  }
  
  .lx-page-header .lx-actions {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}

/* State Count Cards */
.lx-state-count {
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: auto;
  border: none;
}

.lx-state-count::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  z-index: 1;
  pointer-events: none;
}

.lx-state-count a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
}

.lx-state-count span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lx-state-count strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lx-state-count del {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-top: 5px;
}

/* Hover Effects */
.lx-state-count:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.lx-state-count:hover strong {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Color Variations */
/* All */
.lx-state-count[style*="border-bottom:4px solid #242424"] {
  background: linear-gradient(135deg, #2c3e50, #4a6491);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* New */
.lx-state-count[style*="border-bottom:4px solid #828282"] {
  background: linear-gradient(135deg, #485563, #29323c);
  box-shadow: 0 8px 20px rgba(72, 85, 99, 0.3);
}

/* Confirmed */
.lx-state-count[style*="border-bottom:4px solid #7EC855"] {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  box-shadow: 0 8px 20px rgba(86, 171, 47, 0.3);
}

/* Prepared */
.lx-state-count[style*="border-bottom:4px solid #00CCFF"] {
  background: linear-gradient(135deg, #1fa2ff, #12d8fa);
  box-shadow: 0 8px 20px rgba(31, 162, 255, 0.3);
}

/* Shipped */
.lx-state-count[style*="border-bottom:4px solid #FF7700"] {
  background: linear-gradient(135deg, #f46b45, #eea849);
  box-shadow: 0 8px 20px rgba(244, 107, 69, 0.3);
}

/* Canceled */
.lx-state-count[style*="border-bottom:4px solid #CC0000"] {
  background: linear-gradient(135deg, #cb356b, #bd3f32);
  box-shadow: 0 8px 20px rgba(203, 53, 107, 0.3);
}

/* Delivered */
.lx-state-count[style*="border-bottom:4px solid #008000"] {
  background: linear-gradient(135deg, #134e5e, #71b280);
  box-shadow: 0 8px 20px rgba(19, 78, 94, 0.3);
}

/* Pending */
.lx-state-count[style*="border-bottom:4px solid #FFAA00"] {
  background: linear-gradient(135deg, #ff8008, #ffc837);
  box-shadow: 0 8px 20px rgba(255, 128, 8, 0.3);
}

/* Blue */
.lx-state-count[style*="border-bottom:4px solid #39add1"] {
  background: linear-gradient(135deg, #0083B0, #00B4DB);
  box-shadow: 0 8px 20px rgba(0, 131, 176, 0.3);
}

/* Custom Gradients for Special Cases */
.lx-state-count[style*="border-bottom:4px solid #242424"] span {
  background: rgba(255, 255, 255, 0.2);
}

.lx-state-count[style*="border-bottom:4px solid #828282"] span {
  background: rgba(255, 255, 255, 0.2);
}

.lx-state-count[style*="border-bottom:4px solid #CC0000"] span {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-state-count {
    padding: 18px;
    margin-bottom: 15px;
  }
  
  .lx-state-count strong {
    font-size: 26px;
  }
  
  .lx-state-count span {
    font-size: 14px;
    padding: 4px 10px;
  }
  
  .lx-state-count del {
    font-size: 13px;
  }
}

/* Main Content Area */
.lx-main-content {
  padding: 100px 20px 30px 320px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fb 100%);
}

/* Page Content Container */
.lx-page-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 252, 255, 0.95));
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.lx-page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ec4760, rgba(242, 206, 20, 0.7));
  border-radius: 2px 0 0 2px;
}

/* Page Content Section Titles */
.lx-page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.lx-page-content h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #444f7d, rgba(242, 206, 20, 0.7));
}

/* Page Content Section */
.lx-page-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lx-page-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Page Content Responsive Adjustments */
@media (max-width: 768px) {
  .lx-page-content {
    padding: 20px;
    border-radius: 12px;
  }
  
  .lx-page-content::before {
    width: 3px;
  }
  
  .lx-page-content h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}

/* Add Form Styling */
.lx-add-form {
  margin-bottom: 20px;
}

/* Modern Form Elements */
.lx-page-content input[type="text"],
.lx-page-content input[type="email"],
.lx-page-content input[type="password"],
.lx-page-content input[type="number"],
.lx-page-content input[type="tel"],
.lx-page-content textarea,
.lx-page-content select {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.lx-page-content input[type="text"]:focus,
.lx-page-content input[type="email"]:focus,
.lx-page-content input[type="password"]:focus,
.lx-page-content input[type="number"]:focus,
.lx-page-content input[type="tel"]:focus,
.lx-page-content textarea:focus,
.lx-page-content select:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
  background: white;
}

.lx-page-content select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23444f7d' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.lx-page-content textarea {
  min-height: 120px;
  resize: vertical;
}

.lx-page-content label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
  font-size: 14px;
}

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

/* Checkbox and Radio Styling */
.lx-page-content input[type="checkbox"],
.lx-page-content input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.lx-page-content .lx-checkbox,
.lx-page-content .lx-radio {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.lx-page-content .lx-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lx-page-content .lx-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lx-page-content .lx-checkbox:hover input ~ .checkmark,
.lx-page-content .lx-radio:hover input ~ .checkmark {
  background-color: #f0f0f0;
}

.lx-page-content .lx-checkbox input:checked ~ .checkmark,
.lx-page-content .lx-radio input:checked ~ .checkmark {
  background-color: #444f7d;
  border-color: #444f7d;
}

.lx-page-content .lx-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lx-page-content .lx-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.lx-page-content .lx-checkbox input:checked ~ .checkmark:after,
.lx-page-content .lx-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Modern Button Styling */
.lx-add-form a.lx-new,
.lx-add-form button.lx-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  margin-left: 10px;
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(68, 79, 125, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lx-add-form a.lx-new::before,
.lx-add-form button.lx-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.lx-add-form a.lx-new:hover,
.lx-add-form button.lx-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(68, 79, 125, 0.3);
}

.lx-add-form a.lx-new:hover::before,
.lx-add-form button.lx-new:hover::before {
  left: 100%;
}

.lx-add-form a.lx-new:active,
.lx-add-form button.lx-new:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(68, 79, 125, 0.2);
}

/* Secondary Button Style */
.lx-add-form a.lx-new.lx-secondary,
.lx-add-form button.lx-new.lx-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 252, 0.9));
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.lx-add-form a.lx-new.lx-secondary:hover,
.lx-add-form button.lx-new.lx-secondary:hover {
  color: #444f7d;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

/* Button with Icon */
.lx-add-form a.lx-new i,
.lx-add-form button.lx-new i {
  margin-right: 8px;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-add-form {
    margin-bottom: 15px;
  }
  
  .lx-add-form a.lx-new,
  .lx-add-form button.lx-new {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Quick Filter Styling */
.lx-quick-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.lx-quick-filter a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lx-quick-filter a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.lx-quick-filter a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.lx-quick-filter a:hover::before {
  left: 100%;
}

.lx-quick-filter a:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Filter Color Variations */
.lx-quick-filter a[style*="background:#FFAA00"] {
  background: linear-gradient(135deg, #FFAA00, #FF8C00) !important;
}

.lx-quick-filter a[style*="background:#008000"] {
  background: linear-gradient(135deg, #008000, #00A000) !important;
}

.lx-quick-filter a[style*="background:#00CCFF"] {
  background: linear-gradient(135deg, #00CCFF, #0099CC) !important;
}

.lx-quick-filter a[style*="background:#FF7700"] {
  background: linear-gradient(135deg, #FF7700, #FF5500) !important;
}

.lx-quick-filter a[style*="background:#CC0000"] {
  background: linear-gradient(135deg, #CC0000, #AA0000) !important;
}

.lx-quick-filter a[style*="background:#242424"] {
  background: linear-gradient(135deg, #242424, #444444) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-quick-filter {
    display: flex;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .lx-quick-filter::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .lx-quick-filter a {
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* Modern Table Styling */
.lx-table {
  width: 100%;
  margin-bottom: 25px;
  overflow-x: auto;
}

.lx-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 252, 255, 0.95));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Table Header */
.lx-table tr.lx-first-tr,
.lx-table thead tr {
  background: linear-gradient(135deg, rgba(245, 245, 250, 0.95), rgba(240, 240, 245, 0.95));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lx-table tr.lx-first-tr td,
.lx-table tr.lx-first-tr th,
.lx-table thead tr th {
  padding: 16px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
  text-align: left;
  position: relative;
  transition: all 0.2s ease;
}

.lx-table tr.lx-first-tr td:not(:last-child)::after,
.lx-table tr.lx-first-tr th:not(:last-child)::after,
.lx-table thead tr th:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.05);
}

/* Table Body */
.lx-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lx-table tbody tr:last-child {
  border-bottom: none;
}

.lx-table tbody tr:hover {
  background: rgba(236, 71, 96, 0.03);
}

.lx-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #555;
  vertical-align: middle;
  transition: all 0.2s ease;
}

/* Alternating Row Colors */
.lx-table tbody tr:nth-child(even) {
  background: rgba(248, 248, 252, 0.5);
}

.lx-table tbody tr:nth-child(even):hover {
  background: rgba(236, 71, 96, 0.03);
}

/* Checkbox Styling */
.lx-table label {
  position: relative;
  cursor: pointer;
  user-select: none;
  padding-left: 25px;
}

.lx-table input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.lx-table .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lx-table label:hover input ~ .checkmark {
  background-color: #f0f0f0;
}

.lx-table input:checked ~ .checkmark {
  background-color: #444f7d;
  border-color: #444f7d;
}

.lx-table .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lx-table input:checked ~ .checkmark:after {
  display: block;
}

/* Action Buttons */
.lx-table .lx-edit,
.lx-table .lx-delete,
.lx-table .lx-restore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Status Indicators */
.lx-table .lx-on-off {
  position: relative;
  width: 44px;
  height: 22px;
  border-radius: 22px;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lx-table .lx-on-off-blue {
  background: #444f7d;
}

.lx-table .lx-on-off-fill {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
}

.lx-table .lx-on-off-blue .lx-on-off-fill {
  left: calc(100% - 20px);
}

.lx-table .lx-on-off-fill i {
  display: none;
  font-size: 12px;
  color: #444f7d;
}

.lx-table .lx-on-off-blue .lx-on-off-fill i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Image Preview */
.lx-table .lx-photos-preview {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lx-table .lx-photos-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lx-table .lx-photos-preview:hover img {
  transform: scale(1.05);
}

/* Upload Photos Button */
.lx-table .lx-upload-photos {
  position: relative;
}

.lx-table .lx-upload-photos input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.lx-table .lx-upload-photos a {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.9), rgba(255, 255, 255, 0.9));
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.lx-table .lx-upload-photos:hover a {
  background: linear-gradient(135deg, rgba(236, 71, 96, 0.1), rgba(236, 71, 96, 0.05));
  color: #444f7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Trash/Published Links */
.lx-trash {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.9), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  margin-right: 10px;
  margin-bottom: 15px;
}

.lx-trash i {
  margin-right: 8px;
  font-size: 14px;
  color: #444f7d;
}

.lx-trash:hover {
  background: linear-gradient(135deg, rgba(236, 71, 96, 0.1), rgba(236, 71, 96, 0.05));
  color: #444f7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-table {
    margin-bottom: 20px;
  }
  
  .lx-table table {
    min-width: 600px;
  }
  
  .lx-table tr.lx-first-tr td,
  .lx-table tr.lx-first-tr th,
  .lx-table thead tr th {
    padding: 12px;
    font-size: 13px;
  }
  
  .lx-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .lx-table .lx-edit,
  .lx-table .lx-delete,
  .lx-table .lx-restore {
    width: 28px;
    height: 28px;
    margin-right: 5px;
  }
  
  .lx-trash {
    padding: 6px 12px;
    font-size: 13px;
    margin-bottom: 12px;
  }
}

/* Modern Popup Styling */
.lx-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  overflow: auto;
}

.lx-popup-inside {
  width: 90%;
  max-width: 800px;
  margin: 5vh auto; 
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 252, 255, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.lx-popup-content {
  position: relative;
  padding: 25px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lx-popup-content > a {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: all 0.3s ease;
  z-index: 2;
}

.lx-popup-content > a:hover {
  background: rgba(68, 79, 125, 0.1);
  color: #444f7d;
  transform: rotate(90deg);
}

.lx-popup-content > a > .material-icons {
  font-size: 20px;
}

.lx-popup-details {
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(68, 79, 125, 0.3) rgba(0, 0, 0, 0.05);
}

.lx-popup-details::-webkit-scrollbar {
  width: 6px;
}

.lx-popup-details::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.lx-popup-details::-webkit-scrollbar-thumb {
  background: rgba(68, 79, 125, 0.3);
  border-radius: 10px;
}

.lx-form-title h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.lx-form-title h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #444f7d, rgba(242, 206, 20, 0.7));
}

/* Modern Form Fields in Popup */
.lx-textfield {
  margin-bottom: 20px;
}

.lx-popup-inside .lx-textfield {
  margin-bottom: 20px !important;
}

.lx-textfield label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
  font-size: 14px;
}

.lx-textfield input[type="text"],
.lx-textfield input[type="email"],
.lx-textfield input[type="password"],
.lx-textfield input[type="number"],
.lx-textfield input[type="tel"],
.lx-textfield textarea,
.lx-textfield select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.lx-textfield input[type="text"]:focus,
.lx-textfield input[type="email"]:focus,
.lx-textfield input[type="password"]:focus,
.lx-textfield input[type="number"]:focus,
.lx-textfield input[type="tel"]:focus,
.lx-textfield textarea:focus,
.lx-textfield select:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
  box-shadow: 0 0 0 3px rgba(68, 79, 125, 0.1);
  background: white;
}

.lx-textfield select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23444f7d' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.lx-textfield textarea {
  min-height: 120px;
  resize: vertical;
}

/* Form Actions */
.lx-add-form input[type="submit"],
.lx-add-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #444f7d, #3a4369);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(68, 79, 125, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.lx-add-form input[type="submit"]:hover,
.lx-add-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(68, 79, 125, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lx-popup-inside {
    width: 95%;
    max-height: 85vh;
    margin: 7.5vh auto;
  }
  
  .lx-popup-content {
    padding: 20px;
  }
  
  .lx-form-title h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  
  .lx-popup-content > a {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
  }
  
  .lx-popup-content > a > .material-icons {
    font-size: 18px;
  }
  
  .lx-textfield {
    margin-bottom: 15px;
  }
  
  .lx-textfield label span {
    margin-bottom: 5px;
    font-size: 13px;
  }
  
  .lx-textfield input[type="text"],
  .lx-textfield input[type="email"],
  .lx-textfield input[type="password"],
  .lx-textfield input[type="number"],
  .lx-textfield input[type="tel"],
  .lx-textfield textarea,
  .lx-textfield select {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .lx-add-form input[type="submit"],
  .lx-add-form button[type="submit"] {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Modern Grid Layout System */
.lx-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.lx-grid-item-1 { grid-column: span 1; }
.lx-grid-item-2 { grid-column: span 2; }
.lx-grid-item-3 { grid-column: span 3; }
.lx-grid-item-4 { grid-column: span 4; }
.lx-grid-item-5 { grid-column: span 5; }
.lx-grid-item-6 { grid-column: span 6; }
.lx-grid-item-7 { grid-column: span 7; }
.lx-grid-item-8 { grid-column: span 8; }
.lx-grid-item-9 { grid-column: span 9; }
.lx-grid-item-10 { grid-column: span 10; }
.lx-grid-item-11 { grid-column: span 11; }
.lx-grid-item-12 { grid-column: span 12; }

/* Legacy Grid Support */
.lx-g1, .lx-g2, .lx-g3, .lx-g4, .lx-g5, .lx-g6 {
  margin-bottom: 20px;
}

.lx-g1 { width: 100%; }
.lx-g2 { width: 50%; float: left; padding: 0 0px; }
.lx-g3 { width: 33.33%; float: left; padding: 0 10px; }
.lx-g4 { width: 25%; float: left; padding: 0 10px; }
.lx-g5 { width: 20%; float: left; padding: 0 10px; }
.lx-g6 { width: 16.66%; float: left; padding: 0 10px; }

/* Spacing Utilities */
.lx-mb-0 { margin-bottom: 0 !important; }
.lx-mb-1 { margin-bottom: 5px !important; }
.lx-mb-2 { margin-bottom: 10px !important; }
.lx-mb-3 { margin-bottom: 15px !important; }
.lx-mb-4 { margin-bottom: 20px !important; }
.lx-mb-5 { margin-bottom: 25px !important; }

.lx-mt-0 { margin-top: 0 !important; }
.lx-mt-1 { margin-top: 5px !important; }
.lx-mt-2 { margin-top: 10px !important; }
.lx-mt-3 { margin-top: 15px !important; }
.lx-mt-4 { margin-top: 20px !important; }
.lx-mt-5 { margin-top: 25px !important; }

.lx-p-0 { padding: 0 !important; }
.lx-p-1 { padding: 5px !important; }
.lx-p-2 { padding: 10px !important; }
.lx-p-3 { padding: 15px !important; }
.lx-p-4 { padding: 20px !important; }
.lx-p-5 { padding: 25px !important; }

@media (max-width: 1023px) {
  .lx-main-content {
    padding: 100px 15px 30px 15px;
  }
  
  .lx-grid-container {
    gap: 15px;
  }
  
  .lx-grid-item-1, .lx-grid-item-2, .lx-grid-item-3, .lx-grid-item-4,
  .lx-grid-item-5, .lx-grid-item-6, .lx-grid-item-7, .lx-grid-item-8,
  .lx-grid-item-9, .lx-grid-item-10, .lx-grid-item-11, .lx-grid-item-12 {
    grid-column: span 12;
  }
  
  .lx-g2, .lx-g3, .lx-g4, .lx-g5, .lx-g6 {
    width: 100%;
    padding: 0;
  }
}

/* Modern Glassmorphism Header */
.lx-header {
  position: fixed;
  z-index: 9;
  top: 20px;
  left: 320px;
  right: 20px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 252, 0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: calc(100% - 340px);
}

.lx-header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.lx-mobile-menu {
  display: none;
}

.lx-mobile-menu i {
  display: inline-block;
  font-size: 28px;
  color: #555;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 10px;
}

.lx-mobile-menu i:hover {
  color: #444f7d;
  background: rgba(68, 79, 125, 0.1);
  transform: translateY(-2px);
}

/* Header Admin Section */
.lx-header-admin {
  display: flex;
  align-items: center;
}

.lx-header-admin ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lx-header-admin ul li {
  position: relative;
}

/* Header Spans (Commission, etc) */
.lx-header-admin ul li span {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.9), rgba(255, 255, 255, 0.9));
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.lx-header-admin ul li span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.lx-header-admin ul li span a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lx-header-admin ul li span a:hover {
  color: #444f7d;
}

/* Special Commission Span */
.lx-header-admin ul li span a b {
  color: #444f7d;
  font-weight: 600;
}

/* Country Selector */
.lx-header-admin ul li select {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.9), rgba(255, 255, 255, 0.9));
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  color: #555;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23ec4760"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 30px;
  transition: all 0.3s ease;
}

.lx-header-admin ul li select:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.lx-header-admin ul li select:focus {
  outline: none;
  border-color: rgba(68, 79, 125, 0.3);
}

/* User Profile Image */
.lx-header-admin > ul > li > img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.lx-header-admin > ul > li > img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-color: rgba(68, 79, 125, 0.3);
}

/* Account Settings Dropdown */
.lx-account-settings {
  position: absolute;
  top: 60px;
  right: 0;
  display: none;
  width: 260px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 255, 0.95));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 100;
  animation: fadeInDown 0.3s ease-out;
}

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

.lx-account-settings div {
  padding: 18px;
  background: linear-gradient(to right, rgba(252, 252, 255, 0.5), rgba(248, 248, 252, 0.5));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lx-account-settings div strong {
  display: block;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  font-size: 16px;
}

.lx-account-settings div p {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0;
}

.lx-account-settings a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  text-decoration: none;
}

.lx-account-settings a:hover {
  background: rgba(68, 79, 125, 0.05);
  color: #444f7d;
}

.lx-account-settings a i {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  color: #444f7d;
  font-size: 16px;
}

.lx-account-settings a:last-child {
  border-bottom: none;
}

/* Special styling for sign out button */
.lx-account-settings a:last-child {
  color: #444f7d;
  font-weight: 500;
}

.lx-account-settings a:last-child i {
  color: #444f7d;
}

@media (max-width: 1023px) {
  .lx-header {
    left: 20px;
    max-width: calc(100% - 40px);
  }
  
  .lx-mobile-menu {
    display: block;
  }
  
  .lx-header-content {
    justify-content: space-between;
  }
  
  .lx-header-admin ul li span {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .lx-header-admin ul li select {
    padding: 8px 12px;
    font-size: 13px;
    padding-right: 28px;
  }
  
  .lx-header-admin > ul > li > img {
    width: 40px;
    height: 40px;
  }
}