/**
 * User Management v2.0 - Komplett neu
 * Modernes, dunkles Design
 */

/* Container */
.aom-user-management-v2 {
    padding: 20px;
    margin: 0 auto;
}

/* Header */
.aom-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.aom-page-header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #f9fafb;
}

.aom-subtitle {
    margin: 5px 0 0;
    color: #9ca3af;
    font-size: 14px;
}

/* Stats Grid */
.aom-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.aom-stat-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.aom-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aom-stat-icon .dashicons {
    font-size: 28px;
    color: white;
}

.aom-stat-content {
    flex: 1;
}

.aom-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1;
}

.aom-stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 5px;
}

/* Filters */
.aom-filters {
    background: #1f2937;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.aom-search-input {
    flex: 1;
    min-width: 250px;
    padding: 10px 15px;
    background: #111827;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #f9fafb;
    font-size: 14px;
}

.aom-search-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.aom-filter-select {
    padding: 10px 15px;
    background: #111827;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #f9fafb;
    font-size: 14px;
    min-width: 150px;
}

.aom-filter-select:focus {
    outline: none;
    border-color: #14b8a6;
}

/* Buttons */
.aom-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.aom-btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
}

.aom-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

.aom-btn-secondary {
    background: #374151;
    color: #f9fafb;
}

.aom-btn-secondary:hover {
    background: #4b5563;
}

.aom-btn-danger {
    background: #dc2626;
    color: white;
}

.aom-btn-danger:hover {
    background: #b91c1c;
}

/* Loading State */
.aom-loading-state {
    text-align: center;
    padding: 60px 20px;
}

.aom-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(20, 184, 166, 0.2);
    border-top-color: #14b8a6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.aom-loading-state p {
    color: #9ca3af;
    font-size: 16px;
}

/* Status Badge */
.aom-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.aom-status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.aom-status-in_progress {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.aom-status-completed {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
}

.aom-status-inactive {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

/* Bulk Actions */
.aom-bulk-actions {
    background: #1f2937;
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.aom-bulk-info {
    color: #14b8a6;
    font-weight: 600;
    font-size: 14px;
}

.aom-bulk-info span {
    color: #06b6d4;
    font-size: 16px;
}

.aom-bulk-select {
    background: #111827;
    border: 1px solid rgba(75, 85, 99, 0.3);
    color: #f9fafb;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    min-width: 200px;
}

.aom-bulk-select:focus {
    outline: none;
    border-color: #14b8a6;
}

.aom-bulk-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkboxes */
.aom-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #14b8a6;
}

/* Table Container */
#users-table-container {
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    border-radius: 12px;
}

#users-table-container::-webkit-scrollbar {
    width: 8px;
}

#users-table-container::-webkit-scrollbar-track {
    background: #111827;
    border-radius: 4px;
}

#users-table-container::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 4px;
}

#users-table-container::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* Table */
.aom-table-wrapper {
    background: #1f2937;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
}

.aom-users-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.aom-users-table th:nth-child(1) { width: 5%; min-width: 60px; } /* Checkbox */
.aom-users-table th:nth-child(2) { width: 5%; min-width: 70px; } /* Geschlecht */
.aom-users-table th:nth-child(3) { width: 12%; min-width: 120px; } /* Name */
.aom-users-table th:nth-child(4) { width: 15%; min-width: 180px; } /* Kontakt */
.aom-users-table th:nth-child(5) { width: 10%; min-width: 110px; } /* Adresse */
.aom-users-table th:nth-child(6) { width: 8%; min-width: 80px; } /* Passwort */
.aom-users-table th:nth-child(7) { width: 10%; min-width: 100px; } /* Status */
.aom-users-table th:nth-child(8) { width: 12%; min-width: 120px; } /* Fortschritt */
.aom-users-table th:nth-child(9) { width: 8%; min-width: 90px; } /* Dokumente */
.aom-users-table th:nth-child(10) { width: 7%; min-width: 80px; } /* Kurse */
.aom-users-table th:nth-child(11) { width: 13%; min-width: 150px; } /* Aktionen */

.aom-users-table thead {
    background: #111827;
    position: sticky;
    top: 0;
    z-index: 10;
}

.aom-users-table th {
    padding: 15px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    background: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aom-users-table tbody tr {
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);
    transition: background 0.2s;
}

.aom-users-table tbody tr:hover {
    background: rgba(20, 184, 166, 0.05);
}

.aom-users-table tbody tr:last-child {
    border-bottom: none;
}

.aom-users-table td {
    padding: 12px;
    color: #f9fafb;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aom-table-gender {
    font-size: 18px;
    text-align: center;
    display: block;
}

.aom-table-name {
    font-weight: 500;
    color: #f9fafb;
}

.aom-table-contact {
    font-size: 12px;
}

.aom-table-contact > div {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    color: #9ca3af;
}

.aom-table-contact .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.aom-contact-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.aom-contact-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.aom-table-address {
    font-size: 13px;
}

.aom-table-address > div {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.aom-table-address .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #3b82f6;
}

.aom-table-first-name,
.aom-table-last-name {
    font-weight: 500;
}

.aom-table-user-email {
    font-size: 12px;
    color: #9ca3af;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aom-table-count {
    text-align: center;
    display: block;
    font-weight: 600;
    color: #14b8a6;
}

.aom-table-date {
    font-size: 12px;
    color: #9ca3af;
}

.aom-table-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aom-table-progress-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.aom-table-progress-bar > div:first-child {
    flex: 1;
    min-width: 60px;
    height: 6px;
    background: #111827;
    border-radius: 10px;
    overflow: hidden;
}

.aom-table-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #14b8a6 0%, #06b6d4 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.aom-table-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: #14b8a6;
    min-width: 35px;
}

.aom-table-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.aom-table-action-btn {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    background: transparent;
    color: #9ca3af;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.aom-table-action-btn:hover {
    background: #374151;
    border-color: #14b8a6;
    color: #14b8a6;
}

.aom-table-action-btn.delete:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.aom-table-date {
    color: #9ca3af;
    font-size: 13px;
}

/* Responsive Table */
@media (max-width: 1024px) {
    .aom-table-wrapper {
        overflow-x: auto;
    }
    
    .aom-users-table {
        min-width: 900px;
    }
}

/* Empty State */
.aom-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.aom-empty-state .dashicons {
    font-size: 80px;
    color: #374151;
    width: 80px;
    height: 80px;
}

.aom-empty-state h3 {
    font-size: 24px;
    color: #f9fafb;
    margin: 20px 0 10px;
}

.aom-empty-state p {
    color: #9ca3af;
    font-size: 16px;
}

/* Pagination */
.aom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.aom-page-btn {
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    background: #1f2937;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
}

.aom-page-btn:hover:not(:disabled) {
    background: #374151;
    border-color: #14b8a6;
    color: #14b8a6;
}

.aom-page-btn.active {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    border-color: transparent;
    color: white;
}

.aom-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Modal */
/* Modal mit hoher Spezifität */
#user-modal.aom-modal,
#import-modal.aom-modal,
#email-modal.aom-modal,
#user-details-modal.aom-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#user-modal.aom-modal.active,
#import-modal.aom-modal.active,
#email-modal.aom-modal.active,
#user-details-modal.aom-modal.active {
    display: flex !important;
}

#user-modal.aom-modal .aom-modal-overlay,
#import-modal.aom-modal .aom-modal-overlay,
#email-modal.aom-modal .aom-modal-overlay,
#user-details-modal.aom-modal .aom-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1;
}

#user-modal.aom-modal .aom-modal-container,
#import-modal.aom-modal .aom-modal-container,
#email-modal.aom-modal .aom-modal-container,
#user-details-modal.aom-modal .aom-modal-container {
    position: relative !important;
    background: #1f2937;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
    margin: auto !important;
}

#user-modal.aom-modal .aom-modal-container.aom-modal-large,
#import-modal.aom-modal .aom-modal-container.aom-modal-large,
#email-modal.aom-modal .aom-modal-container.aom-modal-large,
#user-details-modal.aom-modal .aom-modal-container.aom-modal-large {
    max-width: 800px !important;
}

.aom-modal-header {
    padding: 25px;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aom-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #f9fafb;
}

.aom-modal-close {
    background: transparent;
    border: none;
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aom-modal-close:hover {
    color: #f9fafb;
}

.aom-modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.aom-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Form */
.aom-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.aom-form-group {
    margin-bottom: 20px;
}

.aom-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
}

.aom-form-group input,
.aom-form-group select {
    width: 100%;
    padding: 10px 15px;
    background: #111827;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #f9fafb;
    font-size: 14px;
}

.aom-form-group input:focus,
.aom-form-group select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.aom-password-field {
    display: flex;
    gap: 10px;
}

.aom-password-field input {
    flex: 1;
}

/* CSV Import Styles */
.aom-import-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 8px;
    border: 1px solid #374151;
}

.aom-import-section h3 {
    color: #14b8a6;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.aom-import-section h4 {
    color: #e5e7eb;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.aom-import-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(20, 184, 166, 0.05);
    border-left: 3px solid #14b8a6;
    border-radius: 4px;
}

.aom-import-info ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: #9ca3af;
}

.aom-import-info li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.aom-import-info strong {
    color: #e5e7eb;
}

.aom-file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aom-preview-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.aom-preview-stats > div {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
}

.aom-preview-errors {
    margin: 20px 0;
}

.aom-preview-errors table {
    width: 100%;
    margin-top: 10px;
}

#preview-table-container {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

#preview-table-container .aom-table {
    margin: 0;
}

/* Spin animation for loading */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dashicons.spin {
    animation: spin 1s linear infinite;
}

/* User Details Modal */
.aom-user-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.aom-detail-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.aom-detail-section h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #e5e7eb;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 10px;
}

.aom-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aom-detail-item:last-child {
    border-bottom: none;
}

.aom-detail-item strong {
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
}

.aom-detail-item span {
    color: #e5e7eb;
    font-size: 14px;
}

.aom-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aom-user-info strong {
    color: #e5e7eb;
    font-size: 14px;
}

.aom-user-info small {
    color: #9ca3af;
    font-size: 12px;
}

/* Badge Styles */
.aom-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.aom-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.aom-badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.aom-badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.aom-badge-muted {
    background: rgba(156, 163, 175, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.aom-badge .dashicons {
    font-size: 14px;
}

/* Document Upload Styles */
.aom-documents-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    min-height: 60px;
}

.aom-documents-preview:empty::before {
    content: "Keine Dokumente ausgewählt";
    color: #9ca3af;
    font-size: 13px;
    text-align: center;
    display: block;
}

.aom-document-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #1f2937;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 6px;
}

.aom-document-item .dashicons {
    color: #60a5fa;
    font-size: 20px;
}

.aom-document-name {
    flex: 1;
    color: #e5e7eb;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aom-document-size {
    color: #9ca3af;
    font-size: 12px;
}

.aom-remove-document {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.aom-remove-document:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.05);
}

.aom-remove-document .dashicons {
    font-size: 16px;
}

/* E-Mail Modal Styles */
.aom-email-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aom-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 3px solid #3b82f6;
    border-radius: 8px;
    color: #60a5fa;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.aom-info-box .dashicons {
    font-size: 20px;
    flex-shrink: 0;
}

.aom-info-box small {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
    font-size: 12px;
}

.aom-info-box strong {
    font-weight: 600;
}

#email-status-message {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dashicons.spin {
    animation: spin 1s linear infinite;
}

.aom-email-preview {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.aom-email-preview h3 {
    margin: 0 0 15px;
    color: #f9fafb;
    font-size: 16px;
}

.aom-email-preview-content {
    background: #ffffff;
    color: #1f2937;
    padding: 20px;
    border-radius: 6px;
}

.aom-email-subject {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.aom-email-subject strong {
    color: #374151;
}

.aom-email-body {
    line-height: 1.6;
}

.aom-email-body p {
    margin: 10px 0;
}

.aom-form-control {
    width: 100%;
    padding: 10px 15px;
    background: #111827;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 14px;
    transition: all 0.2s;
}

.aom-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea.aom-form-control {
    resize: vertical;
    font-family: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
    .aom-table-wrapper {
        overflow-x: auto;
    }
    
    .aom-users-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .aom-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .aom-filters {
        flex-direction: column;
    }
    
    .aom-search-input {
        width: 100%;
    }
    
    .aom-form-row {
        grid-template-columns: 1fr;
    }
    
    .aom-preview-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .aom-user-details-grid {
        grid-template-columns: 1fr;
    }
}

