/* Modern FastCron Style Design System */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F8FAFC;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Light Text Styles - Inter Font */
.text-light {
    color: var(--text-tertiary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: var(--text-muted) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-secondary {
    color: var(--text-secondary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-tertiary {
    color: var(--text-tertiary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Modern Color Palette */
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --secondary: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-tertiary: #adb5bd;
    --text-muted: #dee2e6;
    
    /* Surface Colors */
    --surface-primary: #ffffff;
    --surface-secondary: #f8f9fa;
    --surface-tertiary: #e9ecef;
    --surface-quaternary: #dee2e6;
    
    /* Border Colors */
    --border: #dee2e6;
    --border-light: #e9ecef;
    --border-dark: #adb5bd;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-2xl: 24px;
    --spacing-3xl: 32px;
    --spacing-4xl: 40px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f7fa;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
}

/* Modern Header */
.modern-header {
    background: var(--surface-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-3xl);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.header-logo:hover {
    background: var(--surface-secondary);
    transform: translateY(-1px);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.logo:hover {
    background: var(--surface-secondary);
    transform: translateY(-1px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg);
}

.logo-icon i {
    position: relative;
    z-index: 1;
}

.header-logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 12px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--surface-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-role {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Apple Header Buttons */
.apple-header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.apple-header-btn i {
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.apple-header-btn span {
    font-weight: 500;
    letter-spacing: -0.01em;
}

.apple-header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 8px;
}

.apple-header-btn:hover::before {
    opacity: 1;
}

.apple-admin-btn {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    border-color: rgba(0, 122, 255, 0.2);
}

.apple-admin-btn:hover {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
}

.apple-logout-btn {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border-color: rgba(255, 59, 48, 0.2);
}

.apple-logout-btn:hover {
    background: rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.15);
}


.header-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--surface-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background: var(--surface-tertiary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

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

.header-btn.logout-btn:hover {
    background: #c82333;
    border-color: #c82333;
}

/* Modern Dashboard */
.modern-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-3xl);
    min-height: 100vh;
}

/* Apple Style Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 12px;
}

.brand-icon i {
    position: relative;
    z-index: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apple Dashboard Header */
.apple-dashboard-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    margin-bottom: 32px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.apple-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apple-header-left {
    display: flex;
    align-items: center;
}

.apple-brand-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.apple-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.apple-status-indicators {
    display: flex;
    align-items: center;
    gap: 16px;
}

.apple-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.apple-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.apple-status-green {
    background: #30d158;
}

.apple-status-text {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
}

.apple-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apple-header-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.apple-header-action:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.apple-header-action i {
    font-size: 16px;
}

.apple-logout {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.apple-logout:hover {
    background: rgba(255, 59, 48, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .apple-header-content {
        padding: 0 16px;
    }
    
    .apple-brand-title {
        font-size: 20px;
    }
    
    .apple-header-right {
        gap: 16px;
    }
    
    .apple-status-indicators {
        display: none;
    }
    
    .apple-header-action {
        width: 36px;
        height: 36px;
    }
    
    .apple-header-action i {
        font-size: 14px;
    }
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-size: 14px;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.dashboard-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--surface-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.stat-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

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

.stat-icon-wrapper {
    flex-shrink: 0;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.running {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.failed {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Cards */
.modern-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-card:hover {
    box-shadow: var(--shadow-lg);
}

.section-header {
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Add Job Section */
.add-job-section {
    margin-bottom: var(--spacing-3xl);
}

.add-job-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    background: var(--surface-primary);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

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

.btn-add {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

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

/* Jobs Section */
.jobs-section {
    margin-bottom: var(--spacing-3xl);
}

.table-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-action {
    background: var(--surface-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-action:hover {
    background: var(--surface-tertiary);
    transform: translateY(-1px);
}

.btn-action.btn-play {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.btn-action.btn-pause {
    background: var(--warning);
    color: white;
    border-color: var(--warning);
}

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

/* Modern Table */
.table-container {
    overflow-x: auto;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.modern-table th {
    background: var(--surface-secondary);
    padding: var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.modern-table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

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

.row-number {
    font-weight: 600;
    color: var(--text-tertiary);
    text-align: center;
    font-size: 13px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
    background: var(--surface-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.category-fiyat-güncelleme-cron {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-color: rgba(0, 102, 255, 0.2);
}

.category-gönder-al-cron {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border-color: rgba(40, 167, 69, 0.2);
}

.service-name {
    font-weight: 500;
    color: var(--text-primary);
}

.url-cell {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.action-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
}

.status-indicator.status-running {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.status-indicator.status-running i {
    color: var(--success);
    animation: pulse 2s infinite;
}

.status-indicator.status-paused {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.status-indicator.status-paused i {
    color: var(--warning);
}

.status-indicator.status-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.status-indicator.status-error i {
    color: var(--danger);
}

.status-indicator.status-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.status-indicator.status-success i {
    color: var(--success);
}

.status-indicator.status-waiting {
    background: rgba(108, 117, 125, 0.1);
    color: var(--secondary);
}

.status-indicator.status-waiting i {
    color: var(--secondary);
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification {
    background: var(--surface-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    min-width: 320px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.notification-icon.success {
    background: var(--success);
    color: white;
}

.notification-icon.error {
    background: var(--danger);
    color: white;
}

.notification-icon.info {
    background: var(--primary);
    color: white;
}

.notification-icon.warning {
    background: var(--warning);
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.notification-message {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 1;
}

.notification-close:hover {
    background: var(--surface-tertiary);
    color: var(--text-primary);
}

/* Admin Panel Styles */
.card-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-header-left h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-header-left p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.card-header-right {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-email {
    font-size: 12px;
    color: var(--text-secondary);
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.role-admin {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.role-user {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-inactive {
    background: rgba(107, 114, 128, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.approval-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.approval-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.approval-approved {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.approval-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.job-count, .active-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--surface-tertiary);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
}

.modern-table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

.modern-table th {
    background: var(--surface-tertiary);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.modern-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    vertical-align: middle;
}

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

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

/* Dashboard Table Styles */
.url-cell {
    position: relative;
    max-width: 300px;
}

.url-text {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    word-break: break-all;
    line-height: 1.4;
}

.url-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    max-width: 400px;
    word-break: break-all;
    white-space: normal;
}

.url-cell:hover .url-tooltip {
    opacity: 1;
    visibility: visible;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.service-details {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.interval-info {
    font-size: 11px;
    color: var(--text-tertiary);
    background: var(--surface-tertiary);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.status-running {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-paused {
    background: rgba(107, 114, 128, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.status-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-waiting {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--surface-primary) 0%, var(--surface-secondary) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    background: var(--surface-secondary);
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.modal-actions .btn {
    min-width: 100px;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Filter Count Badge */
.filter-count {
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: var(--spacing-sm);
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

/* Responsive Design */

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--spacing-lg);
        height: 60px;
    }
    
    .header-right {
        gap: var(--spacing-md);
    }
    
    .user-info {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .user-details {
        display: none;
    }
    
    .header-btn span {
        display: none;
    }
    
    .apple-header-btn span {
        display: none;
    }
    
    .apple-header-btn {
        padding: 8px 12px;
        min-width: 40px;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    .modal-header {
        padding: var(--spacing-lg);
    }
    
    .modal-body {
        padding: var(--spacing-lg);
    }
    
    .modal-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .modern-dashboard {
        padding: var(--spacing-lg);
    }
    
    .dashboard-header {
        padding: var(--spacing-xl) 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .header-content {
        padding: 0 var(--spacing-lg);
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .brand-section {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .brand-title {
        font-size: 28px;
    }
    
    .brand-subtitle {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .add-job-form {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .dashboard-filter-tabs {
        flex-direction: column;
    }
    
    .modern-table {
        font-size: 12px;
    }
    
    .modern-table th,
    .modern-table td {
        padding: var(--spacing-md);
    }
    
    .action-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-title {
        font-size: 24px;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
    }
}

/* Add Job Button - Apple Style */
.btn-add-job {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    letter-spacing: -0.01em;
}

.btn-add-job::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-add-job:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-add-job:hover::before {
    opacity: 1;
}

.btn-add-job:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-add-job:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-text {
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* Restart Button - Apple Style */
.btn-restart-all {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    letter-spacing: -0.01em;
}

.btn-restart-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-restart-all:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #D97706 0%, var(--warning) 100%);
}

.btn-restart-all:hover::before {
    opacity: 1;
}

.btn-restart-all:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-restart-all .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.btn-restart-all:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Restart Modal Styles */
.restart-options {
    text-align: center;
}

.restart-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.01em;
}

.restart-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.restart-card {
    background: var(--surface-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.restart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restart-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.restart-card:hover::before {
    opacity: 1;
}

.restart-card.restart-all {
    border-color: var(--warning);
}

.restart-card.restart-all:hover {
    border-color: #D97706;
}

.restart-card.restart-all::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0) 100%);
}

.restart-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.restart-card.restart-all .restart-icon {
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
}

.restart-content {
    position: relative;
    z-index: 1;
}

.restart-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.01em;
}

.restart-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.4;
}

.restart-count {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: -0.01em;
}

.restart-card.restart-all .restart-count {
    background: var(--warning);
}

/* Minimal Restart Modal Styles */
.restart-modal-content {
    max-width: 400px;
    width: 90%;
}

.restart-modal-header {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
    background: var(--surface-primary);
}

.restart-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.restart-modal-body {
    padding: var(--spacing-xl);
}

.restart-question-minimal {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xl) 0;
    text-align: center;
    letter-spacing: -0.01em;
}

.restart-options-minimal {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.restart-option-minimal {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--surface-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.restart-option-minimal:hover {
    background: var(--surface-secondary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.restart-option-minimal:active {
    transform: translateY(0);
}

.restart-option-all {
    border-color: var(--warning);
}

.restart-option-all:hover {
    border-color: #D97706;
    background: rgba(245, 158, 11, 0.05);
}

.restart-option-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.restart-option-all .restart-option-icon {
    background: var(--warning);
}

.restart-option-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.restart-option-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.restart-option-count {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apple Style Modal Buttons */
.modal-actions-minimal {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.btn-modal {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    letter-spacing: -0.01em;
}

.btn-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-modal:hover::before {
    opacity: 1;
}

.btn-modal:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-modal-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-modal-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

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

.btn-modal-secondary:hover {
    background: var(--surface-secondary);
    border-color: var(--text-secondary);
}

.btn-modal i {
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.btn-modal span {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Modal Buttons */
@media (max-width: 768px) {
    .modal-actions-minimal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-modal {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   LANDING PAGE STYLES - APPLE DESIGN
   ======================================== */

/* Landing Page Body */
.landing-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #1D1D1F;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1D1D1F;
}

.brand-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn-outline {
    color: #1D1D1F;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
}

.nav-btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.nav-btn-primary {
    background: #007AFF;
    color: white;
    border: 1px solid #007AFF;
}

.nav-btn-primary:hover {
    background: #0056CC;
    border-color: #0056CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #007AFF;
    background: rgba(0, 122, 255, 0.1);
}

/* Group Badge Styles */
.group-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.group-badge i {
    font-size: 11px;
}

/* Settings Modal Styles */
.settings-section {
    margin-bottom: 30px;
}

.settings-section h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.setting-item {
    margin-bottom: 20px;
}

.setting-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
}

.setting-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007AFF;
    cursor: pointer;
}

.setting-description {
    margin-top: 5px;
    margin-left: 30px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Color Picker Styles */
.color-picker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker input[type="color"] {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.color-picker input[type="color"]:hover {
    border-color: #007AFF;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E2E8F0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    color: #1D1D1F;
}

.gradient-text {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-btn-primary {
    background: #007AFF;
    color: white;
    border: 1px solid #007AFF;
}

.hero-btn-primary:hover {
    background: #0056CC;
    border-color: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: #1D1D1F;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1D1D1F;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.preview-header {
    background: #F8FAFC;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #E2E8F0;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
}

.preview-dots span:first-child {
    background: #EF4444;
}

.preview-dots span:nth-child(2) {
    background: #F59E0B;
}

.preview-dots span:last-child {
    background: #10B981;
}

.preview-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.preview-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: #007AFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 4px;
}

.card-status {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.card-status.active {
    background: #D1FAE5;
    color: #065F46;
}

.card-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1D1D1F;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007AFF;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 16px 0;
}

.feature-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 80px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    right: -24px;
    height: 2px;
    background: linear-gradient(90deg, #007AFF 0%, #E2E8F0 100%);
    z-index: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 12px 0;
}

.step-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #007AFF;
    border: 1px solid white;
}

.cta-btn-primary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
    border: 1px solid #25D366;
}

.cta-btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Footer */
.landing-footer {
    background: #1D1D1F;
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .brand-icon {
    width: 24px;
    height: 24px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    font-size: 16px;
    color: #A1A1A6;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #A1A1A6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2C2C2E;
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #A1A1A6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   APPLE LOGIN PAGE STYLES - PURE APPLE DESIGN
   ======================================== */

/* Apple Login Body - Light Theme */
.apple-login-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F8FAFC;
    overflow-x: hidden;
    position: relative;
}

/* Minimal Background */
.minimal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.minimal-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

/* Apple Login Wrapper - Corporate Layout */
.apple-login-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Minimal Login Card */
.apple-login-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.apple-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #1D4ED8);
    border-radius: 16px 16px 0 0;
}

/* Minimal Header */
.minimal-header {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.minimal-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.minimal-logo i {
    font-size: 28px;
    color: white;
}

.minimal-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Minimal Tabs */
.minimal-tabs {
    display: flex;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 300px;
}

.minimal-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #6B7280;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.minimal-tab.active {
    background: white;
    color: #111827;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.minimal-tab:hover:not(.active) {
    color: #374151;
}

/* Minimal Form */
.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.minimal-field {
    width: 100%;
}

.minimal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #111827;
    background: #F9FAFB;
    outline: none;
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.minimal-input:focus {
    border-color: #3B82F6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.minimal-input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Minimal Button */
.minimal-button {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.minimal-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.minimal-button:active {
    transform: translateY(0);
}

.minimal-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.apple-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.apple-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.apple-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    border-radius: 22px;
}

.apple-icon i {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 1;
}

.apple-icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 32px;
    animation: appleGlow 4s ease-in-out infinite;
}

.apple-icon-pulse {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 80%);
    border-radius: 42px;
    animation: applePulse 3s ease-in-out infinite;
}

@keyframes appleGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes applePulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.08); }
}

.apple-brand-text {
    text-align: center;
}

.apple-brand-title {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.1;
}

.apple-brand-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin: 0 0 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    max-width: 320px;
}

.apple-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}

.apple-brand-badge i {
    font-size: 10px;
}

/* Apple Tabs - Corporate Design */
.apple-tabs {
    display: flex;
    background: #F8FAFC;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 40px;
    border: 1px solid #E5E7EB;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 360px;
}

.apple-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #64748B;
    position: relative;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 48px;
}

.apple-tab.active {
    background: white;
    color: #1F2937;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.apple-tab:hover:not(.active) {
    color: #374151;
    background: rgba(255, 255, 255, 0.6);
}

.tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-label {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Apple Form - Corporate Layout */
.apple-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 360px;
}

.apple-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.apple-field-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 0;
    text-align: left;
}

.apple-field-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    min-height: 56px;
}

.apple-field-container:hover {
    border-color: #9CA3AF;
    background: #F3F4F6;
}

.apple-field-container.focused {
    border-color: #3B82F6;
    background: white;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.1);
}

.field-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 20px;
    flex-shrink: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.apple-field-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 18px 18px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #111827;
    outline: none;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.apple-field-input::placeholder {
    color: #9CA3AF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.field-toggle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    border-radius: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.field-toggle:hover {
    color: #374151;
    background: rgba(59, 130, 246, 0.08);
}

/* Apple Button - Corporate Design */
.apple-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 56px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 360px;
}

.apple-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apple-button:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.apple-button:hover::before {
    opacity: 1;
}

.apple-button:active {
    transform: translateY(0);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.apple-button-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.apple-button-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.apple-button.loading .button-icon,
.apple-button.loading .button-text {
    opacity: 0;
}

.apple-button.loading .button-loading {
    opacity: 1;
}

/* Apple Footer - Corporate Layout */
.apple-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #E5E7EB;
    width: 100%;
    max-width: 360px;
}

.apple-footer-text {
    font-size: 15px;
    color: #9CA3AF;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Design for Apple Login */
@media (max-width: 768px) {
    .apple-login-wrapper {
        padding: 20px;
    }
    
    .apple-login-card {
        padding: 32px;
        border-radius: 20px;
    }
    
    .apple-brand-title {
        font-size: 28px;
    }
    
    .apple-brand-subtitle {
        font-size: 15px;
    }
    
    .apple-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .apple-button {
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .apple-login-wrapper {
        padding: 16px;
    }
    
    .apple-login-card {
        padding: 24px;
        border-radius: 18px;
    }
    
    .apple-icon {
        width: 56px;
        height: 56px;
    }
    
    .apple-icon i {
        font-size: 24px;
    }
    
    .apple-brand-title {
        font-size: 24px;
    }
    
    .apple-tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .apple-tab {
        padding: 12px;
    }
}

/* Apple Style Action Buttons */
/* Minimal Cron Job Button */
.btn-cron-job-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 40px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-cron-job-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cron-job-minimal:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cron-job-minimal:hover::before {
    opacity: 1;
}

.btn-cron-job-minimal:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 4px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cron-job-minimal i {
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.btn-cron-job-minimal span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Section Header Layout */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
}

.section-title h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.section-title p {
    margin: 0;
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Minimal Admin Filter Buttons */
.admin-filter-tabs {
    display: flex;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid #E5E7EB;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    gap: 4px;
}

.admin-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    position: relative;
    min-height: 36px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.admin-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-filter-btn:hover {
    color: #374151;
    background: rgba(255, 255, 255, 0.6);
}

.admin-filter-btn:hover::before {
    opacity: 1;
}

.admin-filter-btn.active {
    background: white;
    color: #111827;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.admin-filter-btn.active::before {
    opacity: 0;
}

.filter-text {
    position: relative;
    z-index: 1;
    font-weight: inherit;
    letter-spacing: -0.01em;
}

.filter-count {
    position: relative;
    z-index: 1;
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.admin-filter-btn.active .filter-count {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.admin-filter-btn:hover .filter-count {
    background: rgba(107, 114, 128, 0.15);
    color: #4B5563;
}

.admin-filter-btn.active:hover .filter-count {
    background: rgba(59, 130, 246, 0.15);
    color: #2563EB;
}

/* Dashboard Filter Tabs - Same as Admin */
.dashboard-filter-tabs {
    display: flex;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid #E5E7EB;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    gap: 4px;
    margin-bottom: 24px;
}

.dashboard-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    position: relative;
    min-height: 36px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dashboard-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-filter-btn:hover {
    color: #374151;
    background: rgba(255, 255, 255, 0.6);
}

.dashboard-filter-btn:hover::before {
    opacity: 1;
}

.dashboard-filter-btn.active {
    background: white;
    color: #111827;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.dashboard-filter-btn.active::before {
    opacity: 0;
}

.dashboard-filter-btn .filter-text {
    position: relative;
    z-index: 1;
    font-weight: inherit;
    letter-spacing: -0.01em;
}

.dashboard-filter-btn .filter-count {
    position: relative;
    z-index: 1;
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.dashboard-filter-btn.active .filter-count {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.dashboard-filter-btn:hover .filter-count {
    background: rgba(107, 114, 128, 0.15);
    color: #4B5563;
}

.dashboard-filter-btn.active:hover .filter-count {
    background: rgba(59, 130, 246, 0.15);
    color: #2563EB;
}

.action-buttons-group {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    letter-spacing: -0.01em;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-action:hover::before {
    opacity: 1;
}

.btn-action:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-action-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-action-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-action-secondary {
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
    color: white;
}

.btn-action-secondary:hover {
    background: linear-gradient(135deg, #D97706 0%, var(--warning) 100%);
}

.btn-action-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-action:hover .btn-action-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-action-text {
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* Table Action Buttons - Apple Style */
.action-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.btn-table-action {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-table-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-table-action:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.btn-table-action:hover::before {
    opacity: 1;
}

.btn-table-action:active {
    transform: scale(0.95);
}

.btn-table-play {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
}

.btn-table-play:hover {
    background: linear-gradient(135deg, #059669 0%, var(--success) 100%);
}

.btn-table-pause {
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
    color: white;
}

.btn-table-pause:hover {
    background: linear-gradient(135deg, #D97706 0%, var(--warning) 100%);
}

.btn-table-delete {
    background: linear-gradient(135deg, var(--danger) 0%, #DC2626 100%);
    color: white;
}

.btn-table-delete:hover {
    background: linear-gradient(135deg, #DC2626 0%, var(--danger) 100%);
}

.btn-table-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
}

.btn-table-success:hover {
    background: linear-gradient(135deg, #16A34A 0%, #047857 100%);
}

.btn-table-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #DC2626 100%);
    color: white;
}

.btn-table-danger:hover {
    background: linear-gradient(135deg, #DC2626 0%, var(--danger) 100%);
}

.btn-table-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
    color: white;
}

.btn-table-warning:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
}

.btn-table-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
    color: white;
}

.btn-table-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

/* Webhook Settings Styles */
.webhook-settings {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.webhook-settings h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.webhook-settings h4::before {
    content: "🔗";
    font-size: 18px;
}

.form-help {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 4px;
    font-style: italic;
}

.webhook-settings textarea {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
    resize: vertical;
    min-height: 80px;
}

.webhook-settings textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Security Indicator Styles */
.security-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    font-size: 13px;
    color: #166534;
    margin: 10px 0;
}

.security-indicator.secure {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

.security-indicator.insecure {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #DC2626;
}

.security-indicator i {
    font-size: 14px;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-popular {
    border-color: #007AFF;
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid #F1F5F9;
}

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

.feature-list i {
    color: #10B981;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.pricing-action {
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border-color: transparent;
}

.pricing-btn-primary:hover {
    background: linear-gradient(135deg, #0056CC, #4A3BC7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.pricing-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: #E2E8F0;
}

.pricing-btn-outline:hover {
    background: #F8FAFC;
    border-color: #007AFF;
    color: #007AFF;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .pricing-card-popular {
        transform: none;
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

/* Pending Approvals Table Styles */
.pending-approvals-card {
    margin-bottom: 24px;
}

.pending-approvals-card .card-header {
    background: linear-gradient(135deg, #FF9500, #FF6B35);
    color: white;
    border: none;
}

.pending-approvals-card .card-header h6 {
    color: white;
    font-weight: 600;
}

.pending-approvals-card .card-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pending-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.user-info-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.user-details .user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: linear-gradient(135deg, #FF9500, #FF6B35);
    color: white;
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-buttons .btn-table-success,
.action-buttons .btn-table-danger {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 600;
    min-width: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-buttons .btn-table-success {
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    border: none;
}

.action-buttons .btn-table-success:hover {
    background: linear-gradient(135deg, #28A745, #2BC653);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.action-buttons .btn-table-danger {
    background: linear-gradient(135deg, #FF3B30, #FF453A);
    color: white;
    border: none;
}

.action-buttons .btn-table-danger:hover {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

/* Responsive adjustments for pending approvals */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 6px;
    }
    
    .action-buttons .btn-table-success,
    .action-buttons .btn-table-danger {
        width: 100%;
        justify-content: center;
    }
    
    .user-info-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .user-avatar-small {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Status Badge Styles */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-badge.status-inactive {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.status-badge i {
    font-size: 10px;
}

/* Group Modal Improvements */
.optional-text {
    color: #6B7280;
    font-weight: 400;
    font-size: 14px;
}

.minimal-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    background: #FFFFFF;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 80px;
}

.minimal-textarea:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.minimal-textarea::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Color Picker Styles */
.color-picker {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-option.selected {
    border-color: #007AFF;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
}

.color-option::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.color-option.selected::after {
    opacity: 1;
}

.color-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}