:root {
    /* Color Palette - GESTORIA STYLE BUT BLUE */
    --bg-dark: #f5f6f8; /* Background principal */
    --bg-darker: #ffffff;
    --panel-bg: #ffffff;
    --panel-border: #e0e0e0;
    
    --primary: #2563eb; /* Azul corporativo */
    --primary-hover: #1d4ed8;
    --accent: #000000;
    --success: #10b981;
    --danger: #ef4444;
    
    --text-main: #000000;
    --text-muted: #6A6C6F; /* Gris intermedio */
    
    /* Effects */
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --glass-blur: none;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

/* Glassmorphism Panels -> White Panels */
.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.glass-panel-strong {
    background: #ffffff;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Layout */
.app-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0.3rem 1rem 1rem 1rem;
    gap: 1rem;
}

/* Topbar (formerly Sidebar) */
.topbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 2rem;
}

.brand-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.sidebar-section {
    display: none; /* Hide section headers for topbar */
}

.topbar-nav {
    flex-grow: 1;
    overflow-x: auto; /* Allow scrolling if too many items */
}

.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-btn, .topbar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.nav-btn:hover, .topbar-nav li a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-btn.active, .topbar-nav li.active a {
    background: rgba(37, 99, 235, 0.15); /* primary low opacity */
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    border-right: none;
    font-weight: 600;
}

.nav-btn i, .topbar-nav li a i {
    width: 16px;
    text-align: center;
    font-size: 1.1rem;
}

.topbar-footer {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--panel-border);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(106, 108, 111, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(106, 108, 111, 0.2);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--panel-bg);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    margin: 0;
}

.widgets-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Dashboard Home */
.dashboard-block {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-block-header {
    background: rgba(37, 99, 235, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--panel-border);
}

.dashboard-block-header i {
    color: var(--primary);
    font-size: 1.25rem;
}

.dashboard-block-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.dashboard-block-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.dash-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

.dash-btn i {
    width: 20px;
    text-align: center;
}

.widget {
    background: #f8fafc;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    transition: var(--transition);
}

.widget:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.widget-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.widget-info h3 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.widget-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.top-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    gap: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    width: 300px;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.search-bar i {
    color: var(--text-muted);
}

.main-workspace {
    flex: 1;
    padding: 1rem 2rem 2rem 2rem;
    overflow-y: auto;
    position: relative;
}

/* Buttons */
.primary-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gray-btn {
    background: #4b5563;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gray-btn:hover {
    background: #374151;
}

.secondary-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent);
    border-color: var(--accent);
}

.danger-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    padding: 6px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
}

.btn-sm {
    padding: 0.3rem 0.75rem !important;
    font-size: 0.75rem !important;
    justify-content: center;
}

.btn-sm svg {
    width: 16px;
    height: 16px;
}

.pulse-glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hidden {
    display: none !important;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--panel-bg);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--panel-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
}

.close-modal:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--panel-border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

input[type="text"], input[type="date"], input[type="number"], textarea, select.custom-select {
    background: #ffffff;
    border: 1px solid #ced4da;
    color: var(--accent);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

input[type="text"]:focus, input[type="date"]:focus, input[type="number"]:focus, textarea:focus, select.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

select.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236A6C6F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.required {
    color: var(--danger);
    margin-left: 0.2rem;
}

/* Toggle Switch */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Tables / Data Lists */
.table-wrapper {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    overflow: auto;
    width: 100%;
}

.table-container {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th, .data-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--panel-border);
}

.btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.8rem !important;
}

.data-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    background-color: rgba(0, 0, 0, 0.02);
}

.data-table td {
    font-size: 0.9rem;
    color: var(--accent);
}

.data-table tr {
    transition: var(--transition);
}

.data-table tbody tr:nth-child(even) {
    background-color: rgba(37, 99, 235, 0.02);
}

.data-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.06);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Toasts */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 9999;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease forwards;
    border: 1px solid var(--panel-border);
    border-left-width: 4px;
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Dynamic Profiles Section */
.perfiles-container {
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.perfil-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--panel-border);
}

.perfil-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 8px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 6px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--accent) !important;
    font-size: 0.95rem !important;
}
.select2-search__field {
    outline: none !important;
    border-radius: 6px !important;
    border: 1px solid var(--primary) !important;
}

/* Calendar Builder */
.calendar-month {
    background: #ffffff;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    overflow: hidden;
}
.calendar-month-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--panel-border);
}
.calendar-day-header {
    background: #f1f5f9;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.25rem 0;
}
.calendar-day {
    background: #ffffff;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.calendar-day:hover:not(.empty) {
    background: #e2e8f0;
}
.calendar-day.festivo {
    background: #fee2e2;
    color: #ef4444;
    font-weight: 700;
}
.calendar-day.empty {
    background: #f8fafc;
    cursor: default;
}

/* GESTION EMPLEADO VIEW */
.gestion-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.gestion-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}
.gestion-tabs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.tab-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.tab-btn:hover {
    background: #f8fafc;
    color: var(--primary);
}
.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.gestion-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

/* CALENDAR EXTENDED */
.calendario-leyenda {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
}
.leyenda-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.color-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}
.calendar-day.weekend { background: #f1f5f9; }
.calendar-day.vacaciones { background: #fef3c7; color: #d97706; }
.calendar-day.absentismo_total { background: #f3e8ff; color: #9333ea; font-weight: 700; }
.calendar-day.absentismo_parcial { background: #f1f5f9; color: #475569; font-weight: 700; }
.calendar-day.desactivo { background: #cbd5e1; color: #64748b; font-weight: bold; font-style: italic; opacity: 0.8; }
.calendar-day.selected { border: 2px solid var(--primary); box-sizing: border-box; }

.calendario-anual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mes-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}
.mes-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* CHAT COMPONENT */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
}
.chat-message {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    position: relative;
}
.chat-message.self {
    align-self: flex-end;
    background: #eef2ff;
    border-color: #c7d2fe;
}
.chat-message-author {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}
.chat-message-time {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 5px;
    text-align: right;
}
.chat-input-area {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #e2e8f0;
    gap: 10px;
}
.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    outline: none;
}
.chat-input-area input:focus {
    border-color: var(--primary);
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}
.upload-zone.highlight {
    border-color: var(--primary);
    background: #eff6ff;
}
.upload-zone .upload-icon {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 15px;
}
.upload-zone.highlight .upload-icon {
    color: var(--primary);
}

.action-menu-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: #ffffff !important;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    position: relative;
    box-shadow: none !important;
}

.action-menu-btn:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.action-menu-arrow {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: var(--transition);
}

.action-menu-btn:hover .action-menu-arrow {
    color: var(--primary);
    transform: translateX(3px);
}
