/**
 * LFE Modern Design System
 * League of Filipino Excellence - Brand Styling
 * Version 2.0
 */

/* ===== LFE Brand Colors ===== */
:root {
    --lfe-purple: #6B4C9A;
    --lfe-purple-dark: #4a1d6e;
    --lfe-purple-light: #9B6DD0;
    --lfe-gold: #D4AF37;
    --lfe-gold-light: #FFD700;
    --lfe-gradient: linear-gradient(135deg, #6B4C9A 0%, #9B6DD0 100%);
    --lfe-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --lfe-gradient-dark: linear-gradient(135deg, #4a1d6e 0%, #6B4C9A 100%);

    /* Modern UI Colors */
    --surface-primary: #ffffff;
    --surface-secondary: #f8f9fc;
    --surface-tertiary: #f1f3f9;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f0f0f0;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(107, 76, 154, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===== Modern Card Styles ===== */
.lfe-card {
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.lfe-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lfe-card-body {
    padding: 24px;
}

.lfe-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--surface-secondary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Glass Effect Card */
.lfe-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient Card */
.lfe-card-gradient {
    background: var(--lfe-gradient);
    color: white;
    border: none;
}

.lfe-card-gradient .lfe-card-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* ===== Modern Page Header ===== */
.lfe-page-header {
    background: var(--lfe-gradient);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.lfe-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.lfe-page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.lfe-page-header h1,
.lfe-page-header h2,
.lfe-page-header h3,
.lfe-page-header h4 {
    position: relative;
    z-index: 1;
    color: white;
    margin-bottom: 8px;
}

.lfe-page-header p {
    position: relative;
    z-index: 1;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Simple Page Header */
.lfe-page-header-simple {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.lfe-page-header-simple h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.lfe-page-header-simple p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 8px 0 0 0;
}

/* ===== Modern Buttons ===== */
.lfe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

.lfe-btn-primary:hover {
    background: var(--lfe-gradient-dark);
    color: white;
    box-shadow: var(--shadow-glow);
}

.lfe-btn-secondary {
    background: var(--surface-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.lfe-btn-secondary:hover {
    background: var(--surface-tertiary);
    color: var(--text-primary);
}

.lfe-btn-gold {
    background: var(--lfe-gradient-gold);
    color: var(--text-primary);
}

.lfe-btn-outline {
    background: transparent;
    border: 2px solid var(--lfe-purple);
    color: var(--lfe-purple);
}

.lfe-btn-outline:hover {
    background: var(--lfe-purple);
    color: white;
}

.lfe-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.lfe-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.lfe-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ===== Modern Form Styles ===== */
.lfe-form-group {
    margin-bottom: 20px;
}

.lfe-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lfe-form-label .required {
    color: var(--danger);
}

.lfe-form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lfe-form-control:focus {
    outline: none;
    border-color: var(--lfe-purple);
    box-shadow: 0 0 0 4px rgba(107, 76, 154, 0.1);
}

.lfe-form-control::placeholder {
    color: var(--text-muted);
}

.lfe-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.lfe-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* File Upload */
.lfe-file-upload {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    background: var(--surface-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lfe-file-upload:hover {
    border-color: var(--lfe-purple);
    background: rgba(107, 76, 154, 0.05);
}

.lfe-file-upload-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--lfe-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

/* ===== Modern Table Styles ===== */
.lfe-table-wrapper {
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.lfe-table {
    width: 100%;
    border-collapse: collapse;
}

.lfe-table thead {
    background: var(--surface-secondary);
}

.lfe-table th {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.lfe-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.lfe-table tbody tr {
    transition: all 0.2s ease;
}

.lfe-table tbody tr:hover {
    background: var(--surface-secondary);
}

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

/* ===== Modern Badge Styles ===== */
.lfe-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.lfe-badge-primary {
    background: rgba(107, 76, 154, 0.1);
    color: var(--lfe-purple);
}

.lfe-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.lfe-badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.lfe-badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.lfe-badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.lfe-badge-gold {
    background: var(--lfe-gradient-gold);
    color: var(--text-primary);
}

/* ===== Modern Stats Cards ===== */
.lfe-stat-card {
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.lfe-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.lfe-stat-icon-purple { background: var(--lfe-gradient); }
.lfe-stat-icon-gold { background: var(--lfe-gradient-gold); color: var(--text-primary); }
.lfe-stat-icon-success { background: linear-gradient(135deg, #10b981, #34d399); }
.lfe-stat-icon-info { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.lfe-stat-icon-warning { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: var(--text-primary); }

.lfe-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.lfe-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Modern Empty State ===== */
.lfe-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.lfe-empty-state-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: var(--surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--text-muted);
}

.lfe-empty-state h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lfe-empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Modern List Styles ===== */
.lfe-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lfe-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

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

.lfe-list-item:hover {
    background: var(--surface-secondary);
}

.lfe-list-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.lfe-list-content {
    flex: 1;
    min-width: 0;
}

.lfe-list-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lfe-list-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Modern Chat Styles ===== */
.lfe-chat-container {
    display: flex;
    height: calc(100vh - 200px);
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--surface-primary);
}

.lfe-chat-sidebar {
    width: 320px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    background: var(--surface-primary);
}

.lfe-chat-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.lfe-chat-sidebar-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.lfe-chat-search {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
}

.lfe-chat-search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: var(--surface-secondary);
    font-size: 14px;
}

.lfe-chat-user-list {
    flex: 1;
    overflow-y: auto;
}

.lfe-chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-light);
}

.lfe-chat-user:hover,
.lfe-chat-user.active {
    background: rgba(107, 76, 154, 0.08);
}

.lfe-chat-user.active {
    border-left: 3px solid var(--lfe-purple);
}

.lfe-chat-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.lfe-chat-user-info {
    flex: 1;
    min-width: 0;
}

.lfe-chat-user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.lfe-chat-user-preview {
    font-size: 13px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lfe-chat-user-time {
    font-size: 11px;
    color: var(--text-muted);
}

.lfe-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--surface-secondary);
}

.lfe-chat-header {
    padding: 16px 24px;
    background: var(--surface-primary);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfe-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lfe-chat-message {
    display: flex;
    gap: 12px;
    max-width: 70%;
}

.lfe-chat-message-received {
    align-self: flex-start;
}

.lfe-chat-message-sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.lfe-chat-message-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.lfe-chat-message-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lfe-chat-message-sender {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lfe-chat-message-sent .lfe-chat-message-sender {
    text-align: right;
}

.lfe-chat-message-bubble {
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.5;
}

.lfe-chat-message-received .lfe-chat-message-bubble {
    background: var(--surface-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-top-left-radius: 4px;
}

.lfe-chat-message-sent .lfe-chat-message-bubble {
    background: var(--lfe-gradient);
    color: white;
    border-top-right-radius: 4px;
}

.lfe-chat-message-time {
    font-size: 11px;
    color: var(--text-muted);
}

.lfe-chat-message-sent .lfe-chat-message-time {
    text-align: right;
}

.lfe-chat-input {
    padding: 16px 24px;
    background: var(--surface-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    align-items: center;
}

.lfe-chat-input input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
}

.lfe-chat-input input:focus {
    outline: none;
    border-color: var(--lfe-purple);
}

/* ===== Modern Progress Bar ===== */
.lfe-progress {
    height: 8px;
    background: var(--surface-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.lfe-progress-bar {
    height: 100%;
    background: var(--lfe-gradient);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.lfe-progress-bar-success { background: linear-gradient(90deg, #10b981, #34d399); }
.lfe-progress-bar-gold { background: var(--lfe-gradient-gold); }

/* ===== Modern Tabs ===== */
.lfe-tabs {
    display: flex;
    gap: 4px;
    background: var(--surface-secondary);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.lfe-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.lfe-tab:hover {
    color: var(--text-primary);
    background: rgba(107, 76, 154, 0.05);
}

.lfe-tab.active {
    background: var(--surface-primary);
    color: var(--lfe-purple);
    box-shadow: var(--shadow-sm);
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.animate-slide-in {
    animation: slideIn 0.4s ease forwards;
}

/* ===== Header Notification Icons - White Text ===== */
.main-header .item-one {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--lfe-gradient);
    transition: all 0.3s ease;
}

.main-header .item-one:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.main-header .item-one img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

.main-header .item-one .notify_no {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 700;
    color: white !important;
    background: #ef4444;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Notification dropdown styling */
.notifyDropdown .dropdown-menu {
    min-width: 350px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 16px;
}

.notify-list li {
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.notify-list li:hover {
    background: var(--surface-secondary);
}

/* ===== Sidebar Section Titles ===== */
.sidebar-section-title {
    pointer-events: none;
}

.sidebar-section-title span {
    letter-spacing: 1px;
}

/* ===== LFE Sidebar Name ===== */
.lfe-sidebar-name {
    line-height: 1.2;
}

.lfe-sidebar-name span {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ===== Sidebar Active Menu - White Text ===== */
.zSidebar-menu > li > a.active,
.zSidebar-menu > li > a.active:hover {
    background: var(--lfe-gradient) !important;
    color: white !important;
}

.zSidebar-menu > li > a.active span,
.zSidebar-menu > li > a.active p,
.zSidebar-menu > li > a.active i,
.zSidebar-menu > li > a.active svg,
.zSidebar-menu > li > a.active svg path,
.zSidebar-menu > li > a.active:hover span,
.zSidebar-menu > li > a.active:hover p {
    color: white !important;
    stroke: white !important;
    fill: white !important;
}

.zSidebar-menu > li > a.active .icon-wrapper,
.zSidebar-menu > li > a.active .icon-wrapper svg {
    color: white !important;
}

.zSidebar-menu > li > a.active img {
    filter: brightness(0) invert(1);
}

/* ===== Modern Home Page Sections ===== */
/* Events Section Modern Styling */
.home-rightSide .zList-five {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-rightSide .zList-five > li {
    margin-bottom: 20px;
    padding: 0;
    border: none;
}

.home-rightSide .zList-five > li:last-child {
    margin-bottom: 0;
}

/* Modern Event Card */
.home-rightSide .home-item-one {
    background: var(--surface-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.home-rightSide .home-item-one:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--lfe-purple-light);
}

.home-rightSide .home-item-one .img {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.home-rightSide .home-item-one .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-rightSide .home-item-one:hover .img img {
    transform: scale(1.08);
}

.home-rightSide .home-item-one .img .tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.home-rightSide .home-item-one .img .tag li a {
    background: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--lfe-purple);
    box-shadow: var(--shadow-sm);
}

.home-rightSide .home-item-one .content {
    padding: 16px;
}

.home-rightSide .home-item-one .content .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 8px 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-rightSide .home-item-one .content a.fs-14 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--lfe-gradient);
    color: white !important;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.home-rightSide .home-item-one .content a.fs-14:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Modern Job Card */
.home-rightSide .p-25 > .zList-five > li:not(:has(.home-item-one)) {
    background: var(--surface-secondary);
    border-radius: var(--radius-lg);
    padding: 20px !important;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.home-rightSide .p-25 > .zList-five > li:not(:has(.home-item-one)):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--lfe-purple-light);
}

/* Job Company Logo */
.home-rightSide .zList-five li .w-45.h-45 {
    width: 50px !important;
    height: 50px !important;
    background: white;
    border: 2px solid var(--lfe-purple-light) !important;
    padding: 6px;
}

.home-rightSide .zList-five li .w-45.h-45 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Job Title */
.home-rightSide .zList-five li h4.fs-16 {
    font-weight: 600;
    color: var(--text-primary);
}

/* Job Description */
.home-rightSide .zList-five li > p.fs-14.fw-400 {
    background: rgba(107, 76, 154, 0.05);
    padding: 12px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--lfe-purple);
    margin: 12px 0;
}

/* Job Meta Tags (Location, Salary, Type) */
.home-rightSide .zList-five li > ul.d-flex {
    background: white;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.home-rightSide .zList-five li > ul.d-flex > li {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--border-light);
}

.home-rightSide .zList-five li > ul.d-flex > li:last-child {
    border-right: none;
}

/* Job More Details Link */
.home-rightSide .zList-five li > a.fs-14.fw-500 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--lfe-gradient);
    color: white !important;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.home-rightSide .zList-five li > a.fs-14.fw-500:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Section Headers */
.home-rightSide .p-25 > .d-flex.justify-content-between h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-rightSide .p-25 > .d-flex.justify-content-between h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--lfe-gradient);
    border-radius: 2px;
}

.home-rightSide .p-25 > .d-flex.justify-content-between > a {
    padding: 6px 14px;
    background: var(--surface-secondary);
    border-radius: var(--radius-full);
    color: var(--lfe-purple) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-rightSide .p-25 > .d-flex.justify-content-between > a:hover {
    background: var(--lfe-purple);
    color: white !important;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .lfe-page-header {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .lfe-chat-sidebar {
        width: 100%;
        position: absolute;
        z-index: 10;
    }

    .lfe-stat-card {
        padding: 16px;
    }

    .lfe-stat-value {
        font-size: 24px;
    }

    .main-header .item-one {
        width: 36px;
        height: 36px;
    }

    .notifyDropdown .dropdown-menu {
        min-width: 280px;
    }
}
