/* Pambify Internal Tool - Design System
   Based on Pambify main application design inspiration */

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

/* Improve text rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Satoshi font faces - Using system fonts as fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #357AFF;
    outline-offset: 2px;
}

/* Remove blue outline on mouse click but keep for keyboard navigation */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #357AFF;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #357AFF;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Base Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8fafc;
    overflow-x: auto;
    min-width: 1200px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

.text-highlight {
    color: #357AFF;
    font-weight: 600;
}

.text-muted {
    color: #64748b;
}

.text-success {
    color: #10b981;
}

.text-warning {
    color: #f59e0b;
}

.text-danger {
    color: #ef4444;
}

/* Layout Components */
.app-container {
    display: flex;
    min-height: 100vh;
    min-width: 1200px;
    background-color: #f8fafc;
    width: 100%;
}

/* Sidebar Navigation - see base_template/sidebar.css */
/* Main sidebar styles have been moved to base_template/sidebar.css
   for better organization and separation of concerns */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #f8fafc;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn.active {
    background: #357AFF;
}

.mobile-menu-btn.active .hamburger-icon span {
    background: white;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
    height: 16px;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #64748b;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Desktop Only */

/* Main Content Area - see base_template/header.css */
/* Layout styles have been moved to base_template/header.css */

/* Top Header - see base_template/header.css */
/* Header styles have been moved to base_template/header.css */

/* Cards */
.card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.card-header {
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #f1f5f9;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.card-body {
    padding: 24px;
}

.card-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

/* Buttons - Inspired by Pambify design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: auto;
    height: auto;
    line-height: normal;
    text-align: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: #357AFF;
    color: #ffffff;
    border-color: #357AFF;
}

.btn-primary:hover:not(:disabled) {
    background: #2c6bff;
    border-color: #2c6bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 122, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #357AFF;
    border-color: #357AFF;
    border-width: 2px;
}

.btn-outline:hover:not(:disabled) {
    background: #357AFF;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 122, 255, 0.3);
}

.btn-secondary {
    background: #f8fafc;
    color: #64748b;
    border-color: #e5e7eb;
}

.btn-secondary:hover:not(:disabled) {
    background: #f1f5f9;
    color: #1a1a1a;
    border-color: #d1d5db;
}

.btn-success {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-warning:hover:not(:disabled) {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-danger {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Forms */
.form-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #357AFF;
    box-shadow: 0 0 0 3px rgba(53, 122, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

/* Tables */
.table-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.table th,
.table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    color: #1a1a1a;
    font-size: 14px;
}

.table tbody tr:hover {
    background: #f8fafc;
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #dc2626;
}

.badge-secondary {
    background: #f1f5f9;
    color: #64748b;
}

/* Status specific badges */
.status-active {
    background: #dcfce7;
    color: #166534;
}

.status-inactive {
    background: #fee2e2;
    color: #dc2626;
}

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

.status-open {
    background: #dbeafe;
    color: #1e40af;
}

.status-closed {
    background: #f3f4f6;
    color: #6b7280;
}

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

/* Priority badges */
.priority-low {
    background: #f0fdf4;
    color: #166534;
}

.priority-medium {
    background: #fef3c7;
    color: #92400e;
}

.priority-high {
    background: #fee2e2;
    color: #dc2626;
}

.priority-urgent {
    background: #fecaca;
    color: #991b1b;
}

/* Role badges */
.role-admin {
    background: #fef2f2;
    color: #dc2626;
}

.role-manager {
    background: #eff6ff;
    color: #1d4ed8;
}

.role-support {
    background: #f0fdf4;
    color: #166534;
}

.role-developer {
    background: #f3e8ff;
    color: #7c3aed;
}

/* Search and Filter Components */
.search-filter-container {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin: 14px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.search-filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.search-input {
    min-width: 0;
}

.filter-select {
    min-width: 0;
}

.search-input label,
.filter-select label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.search-input input,
.filter-select select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
}

.search-input input:focus,
.filter-select select:focus {
    outline: none;
    border-color: #357AFF;
    box-shadow: 0 0 0 3px rgba(53, 122, 255, 0.1);
}

.search-filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Advanced Filters for Tickets */
.advanced-filters {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.filter-group small {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.filter-group .form-control {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
}

.filter-group .form-control:focus {
    outline: none;
    border-color: #357AFF;
    box-shadow: 0 0 0 3px rgba(53, 122, 255, 0.1);
}

/* Multi-select improvements */
.multi-select-filter {
    position: relative;
}

.multi-select-display {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.multi-select-display:hover {
    border-color: #cbd5e1;
}

.multi-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.multi-select-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.multi-select-option:hover {
    background-color: #f8fafc;
}

.multi-select-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #357AFF;
}

/* Filter actions */
.filter-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.filter-actions .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-apply {
    background: #357AFF;
    color: white;
    border: none;
}

.btn-apply:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-export {
    background: #059669;
    color: white;
    border: none;
}

.btn-export:hover {
    background: #047857;
    transform: translateY(-1px);
}

.btn-clear {
    background: #6b7280;
    color: white;
    border: none;
}

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

/* Desktop Only */

/* Dashboard Header Redesign */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #357AFF 0%, #4F46E5 100%);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    color: white;
    box-shadow: 0 10px 25px rgba(53, 122, 255, 0.2);
}

.welcome-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-avatar {
    flex-shrink: 0;
}

.welcome-content {
    flex: 1;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.welcome-subtitle {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.dashboard-stats-summary {
    display: flex;
    gap: 32px;
    align-items: center;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mini-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.mini-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Tabs */
.tabs-container {
    margin-bottom: 24px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    gap: 0;
}

.tab-item {
    padding: 12px 24px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-item:hover {
    color: #357AFF;
    text-decoration: none;
}

.tab-item.active {
    color: #357AFF;
    border-bottom-color: #357AFF;
    background: #f8fafc;
}


/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #357AFF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   VERIFICATION TABS
   ============================================ */
.verif-tabs-wrapper {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
}

.verif-tabs-header {
    display: flex;
    align-items: stretch;
    padding: 0 24px;
    border-bottom: 2px solid #e5e7eb;
}

.verif-tabs-nav {
    display: flex;
    gap: 0;
}

.verif-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.verif-tab:hover {
    color: #357AFF;
    text-decoration: none;
    background: #f8fafc;
}

.verif-tab.active {
    color: #357AFF;
    border-bottom-color: #357AFF;
    background: #eff6ff;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e;
}

.verif-tab.active .tab-count {
    background: #357AFF;
    color: #ffffff;
}

.tab-count.zero {
    background: #f1f5f9;
    color: #94a3b8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination a {
    color: #64748b;
    border: 1px solid #e5e7eb;
}

.pagination a:hover {
    background: #357AFF;
    color: #ffffff;
    border-color: #357AFF;
}

.pagination .current {
    background: #357AFF;
    color: #ffffff;
    border: 1px solid #357AFF;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-left-color: #22c55e;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border-left-color: #f59e0b;
}

.alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border-left-color: #ef4444;
}

.alert-info {
    background: #eff6ff;
    color: #1d4ed8;
    border-left-color: #3b82f6;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #357AFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
/* ESM Enhanced Features */

/* Clickable Stat Cards */
.stat-card-clickable {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px;
}

.stat-card-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 122, 255, 0.15);
    text-decoration: none;
    color: inherit;
}

.stat-card-clickable:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(53, 122, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card-clickable:hover:before {
    left: 100%;
}

.stat-drill-hint {
    font-size: 11px;
    color: #64748b;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Stat card content spacing */
.stat-card .mt-2 {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.stat-card-clickable:hover .stat-drill-hint {
    opacity: 1;
}

/* Global Search Bar - see base_template/header.css */
/* Search and user menu styles moved to base_template/header.css */

/* Enhanced Badges */
.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* AZ ID Validation Modal */
.az-id-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.az-id-modal-content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.az-id-modal h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.az-id-modal p {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

.az-id-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 24px;
    font-family: monospace;
    font-size: 14px;
}

.az-id-input:focus {
    outline: none;
    border-color: #357AFF;
}

/* Multi-Select Filter Styling */
.multi-select-display {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease;
}

.multi-select-display:hover {
    border-color: #357AFF;
}

.multi-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 4px;
}

.multi-select-option {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.multi-select-option:hover {
    background: #f3f4f6;
}

.multi-select-option input[type="checkbox"] {
    margin: 0;
}

.multi-select-option label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
}

/* Desktop Only - No Mobile Responsive Styles */

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.gap-1 {
    gap: 4px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.gap-5 {
    gap: 20px;
}

.gap-6 {
    gap: 24px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-5 {
    margin-bottom: 20px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-5 {
    margin-top: 20px;
}

.mt-6 {
    margin-top: 24px;
}