/* Ultra Modern Dark Blue & White Theme */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-darker: #1e293b;
    --primary-light: #dbeafe;
    --secondary: #374151;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    --dark: #ffffff;
    --darker: #0f172a;
    --light: #f8fafc;
    --lighter: #fcfdff;
    --white: #1B1E24;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --gray-lighter: #e5e7eb;
    
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 20px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    --transition: ease-in-out 0.1s ;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-darker);
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Ultra Modern Login Page */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--glass-shadow);
    padding: 50px 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header .logo {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.login-header h2 {
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.75rem;
}

.login-header p {
    color: var(--gray);
    font-size: 1rem;
}

.login-form .form-group {
    margin-bottom: 24px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    z-index: 2;
}

.login-form input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    font-weight: 500;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Elegant Blob Backgrounds */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: 1;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 10%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.05);
    }
}


/* sidebar  */


/* Floating Icon Sidebar */
.sidebar {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(0, 0, 0);
    border-radius: 30px;
    padding: 10px;
    gap: 12px;
    z-index: 1000;

}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 10px ;
    
}


/* Logo item at top */
.logo-item {
    margin-bottom: 6px;
}
.logo-icon {

    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.03);
}
.logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}
.menu-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1B1E24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 10px;
}

/* Tooltip */
.menu-icon::after {
    content: attr(title);
    position: absolute;
    left: 65px;
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.menu-icon:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Hover & Active */
.menu-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--primary);
}

.menu-icon.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px var(--primary);
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar {
        flex-direction: row;
        bottom: 10px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 14px;
        border-radius: 50px;
        background: rgba(30, 30, 30, 0.95);
    }
    .menu-icon::after {
        display: none;
    }
}



/* Modern Dashboard Layout */
/* Page Wrapper */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    background: #000;
    position: relative;
}

/* Main Content Fix */
.main-content {
    flex: 1;
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Remove old sidebar space */
@media (min-width: 769px) {
    .main-content {
        margin-left: 75px; /* small offset for floating sidebar */
    }
}

/* Adjust for floating or bottom bar on mobile */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        margin-bottom: 80px; /* space for bottom bar */
    }
}



/* header */



/* Main Header */
.main-header {

  top: 0;
  left: var(--sidebar-width);
  right: 0;
  background: #000;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  height: 65px;
  transition: all 0.3s ease;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #333;
}
.logo img {
  height: 34px;
  border-radius: 8px;
}

/* Navigation Pill */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #1B1E24;
  border-radius: 50px;
  padding: 8px 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-pill a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
}

.nav-pill a:hover,
.nav-pill a.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
}

/* Right side */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon Group */
.icon-group {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1B1E24;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.icon-group i, .profile-icon i {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.icon-group i:hover, .profile-icon i:hover {
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  padding: 6px;
}

/* Profile icon */
.profile-icon {
  background: #1B1E24;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.profile-icon i {
  font-size: 18px;
}

/* Breadcrumb Section */
.breadcrumb-bar {
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 20px;
  padding: 12px calc(25px + var(--sidebar-width));
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 500;
  color: #fff;
}

.breadcrumb-link {
  color: #fff;
  text-decoration: none;
  background: #1B1E24;
  padding: 6px 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb-link:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.breadcrumb-separator {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
}

.breadcrumb-current {
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* Mobile */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-menu a {
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #555;
  border-bottom: 1px solid #eee;
}
.mobile-menu a:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 992px) {
  .main-header {
    left: 0;
    padding: 10px 20px;
  }
  .breadcrumb-bar {
    padding: 12px 20px;
  }
  .nav-pill { display: none; }
  .mobile-toggle { display: block; }
}


/* Modern Content Area */
.content {
    padding: 30px;
    flex: 1;
background: #000;
}


.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.branch-card {
  background: linear-gradient(135deg, #091a3b 0%, #1B1E24 100%); /* transparent feel */
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

  color: #fff;
}

.branch-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.branch-card:hover .branch-header h4 {
  color: #fff;
}

.branch-city {
  font-size: 0.9rem;
  color: #777;
}

.branch-card:hover .branch-city {
  color: #e2e2e2;
}

.branch-info {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-count {
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.branch-card:hover .branch-count {
  color: #fff;
}

.branch-count i {
  color: #fff;
  font-size: 1rem;
}

.view-link {
  font-size: 0.9rem;
  background: #242830;
  border-radius: 15px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-link:hover {
  color: #959090;
  transform: translateX(3px);
}

.no-data {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}



/* Elegant Cards - No Top Line */
.card {
    background: #1B1E24;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;

    transition: var(--transition);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--border-radius);
}

.btn-link:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.card-body {
    padding: 24px;
}

/* Modern Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #1B1E24;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);

}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    background: var(--primary);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-info p {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Modern Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Modern Lists */
.list {
    list-style: none;
}

.list-item {
    display: flex;
    align-items: center;
    background: var(--light);
    margin-bottom: 10px;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.list-item:hover {
    background: var(--lighter);
    
}

.list-item:last-child {
    border-bottom: none;
}

.list-content h4 {
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.list-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Modern Forms */
.form-group {
    margin-bottom: 0px !important;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    /* transition: var(--transition); */
    background: var(--white);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--gray);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Elegant Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-info {
    background: var(--info);
    color: var(--white);
}

.btn-info:hover {
    background: #2563eb;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 15px;
}

/* Modern Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    border-color: var(--success);
    color: #065f46;
    background: #ecfdf5;
}

.alert-danger {
    border-color: var(--danger);
    color: #7f1d1d;
    background: #fef2f2;
}

/* Ultra Modern Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    margin-top: 10px;
}

.table th,
.table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-lighter);
}

.table th {
    background: var(--primary);
    font-weight: 600;
    color: var(--lighter);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px 20px;
}

.table tbody tr {
    transition: var(--transition);
    padding: 10px;
}

 td:hover {
    background: var(--primary);
    color: var(--white);
}

/* Elegant Action Buttons */
.action-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Modern Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--primary);
    color: var(--white);
}

.badge-secondary {
    background: #e5e7eb;
    color: #374151;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* Elegant No Data Message */
.no-data {
    text-align: center;
    color: var(--gray);
    padding: 40px 20px;
    font-style: italic;
}

.no-data::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Modern Profile Layout Styles */
.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-main-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    border: 1px solid var(--gray-lighter);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 25px;
    border: 1px solid var(--gray-lighter);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    
}

.profile-info h2, .profile-info p{
    color: #fff !important;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.profile-details h2 {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.5rem;
}

.profile-details p {
    color: var(--gray);
    font-size: 1rem;
}

/* Form Section Styles */
.form-section {
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

/* Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-item label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-value {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Skills & Education Styles */
.skills-list, .education-list {
    list-style: none;
}

.skills-list li, .education-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
}

.skills-list li:last-child, .education-list li:last-child {
    border-bottom: none;
}

/* Modern Form Layout */
.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.form-card {
    background: #1B1E24;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 25px;

}

.form-card .card-header {
    padding: 0 0 20px 0;
    
    margin-bottom: 20px;
}

.form-card .card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* Compact Form Styles */
.compact-form .form-group {
    margin-bottom: 20px;
}

.compact-form .form-group:last-child {
    margin-bottom: 0;
}

.compact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.compact-form .form-group input,
.compact-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 14px;
    /* transition: var(--transition); */
    background: #fff;
}

.compact-form .form-group input:focus,
.compact-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Table Card Styles */
.table-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);

    overflow: hidden;
}

.table-card .card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--white);
}

.table-card .card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.table-card .card-body {
    padding: 0;
}

/* Action Header */
.action-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 25px;
}

.action-header h1 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-layout {
        gap: 20px;
    }
}

/* Placeholder Styles */
input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--gray);
    opacity: 0.7;
    font-weight: 400;
}

/* Compact Action Buttons */
.compact-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: var(--primary);
    color: var(--white);
}

.status-inactive {
    background: #dd2323;
    color: #ffffff;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
  
    
     
    
 
    
    
    
   
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .content {
        padding: 20px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .header h1 {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .user-name {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 15px;
    }
    
    .login-card {
        padding: 40px 25px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
    
 

    .table th,
    .table td {
        padding: 12px 8px;
    }
}

/* SweetAlert Custom Styles */
.swal2-popup {
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--gray-lighter) !important;
}

.swal2-title {
    font-weight: 600 !important;
    color: var(--dark) !important;
}

.swal2-confirm {
    background: var(--primary) !important;
    border: none !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
}