/* SecuBox Admin - Admin-Specific Styles */ /* Dashboard */ .secubox-admin-dashboard h2 { margin-bottom: 1.5rem; color: #333; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; } .health-summary { margin-bottom: 2rem; } .health-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; } .health-item { display: flex; flex-direction: column; gap: 0.5rem; } .health-label { font-weight: 600; color: #666; font-size: 0.875rem; } .health-value { font-weight: 600; color: #333; text-align: right; } .alerts-section { margin-bottom: 2rem; } .alerts-list { display: flex; flex-direction: column; gap: 0.5rem; } .quick-actions { margin-bottom: 2rem; } .actions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; } .actions-grid .btn { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem; } .actions-grid .icon { font-size: 2rem; } /* Apps Manager */ .secubox-apps-manager h2 { margin-bottom: 1rem; color: #333; } .app-filters { display: flex; gap: 1rem; margin-bottom: 2rem; } .search-box { flex: 1; padding: 0.5rem 1rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.875rem; } .category-filter { padding: 0.5rem 1rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.875rem; min-width: 150px; } .apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; } .app-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 1.5rem; transition: all 0.2s; display: flex; flex-direction: column; gap: 1rem; } .app-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transform: translateY(-2px); } .app-icon { font-size: 3rem; text-align: center; } .app-info h3 { margin: 0 0 0.5rem 0; font-size: 1.25rem; color: #333; } .app-description { color: #666; font-size: 0.875rem; line-height: 1.5; margin: 0 0 0.5rem 0; } .app-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; } .app-category { background-color: #E3F2FD; color: #1976D2; padding: 0.25rem 0.75rem; border-radius: 12px; font-size: 0.75rem; font-weight: 600; } .app-version { background-color: #F5F5F5; color: #666; padding: 0.25rem 0.75rem; border-radius: 12px; font-size: 0.75rem; } .app-actions { display: flex; gap: 0.5rem; margin-top: auto; } .app-actions .btn { flex: 1; } /* Settings */ .secubox-settings h2 { margin-bottom: 1rem; color: #333; } .settings-list { display: flex; flex-direction: column; gap: 1rem; } .settings-card { padding: 1.5rem; } .settings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: 1rem; } .app-title { display: flex; align-items: center; gap: 0.75rem; } .app-title .app-icon { font-size: 1.5rem; } .app-title h3 { margin: 0; font-size: 1.25rem; } .app-controls { display: flex; gap: 0.5rem; } .settings-info { color: #666; font-size: 0.875rem; line-height: 1.6; } .settings-info strong { color: #333; } /* Health */ .secubox-health h2 { margin-bottom: 1rem; color: #333; } .health-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; } .metric-card { padding: 1.5rem; } .metric-card h4 { margin: 0 0 1rem 0; font-size: 0.875rem; color: #666; font-weight: 600; } .metric-value { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1rem; } .metric-value .value { font-size: 2rem; font-weight: bold; color: #333; } .metric-value .unit { font-size: 1rem; color: #666; } .metric-card.success { border-left: 4px solid #4CAF50; } .metric-card.warning { border-left: 4px solid #FF9800; } .metric-card.danger { border-left: 4px solid #f44336; } .health-details { margin-bottom: 2rem; } .health-details .table { width: 100%; border-collapse: collapse; } .health-details .table th, .health-details .table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #e0e0e0; } .health-details .table th { background-color: #f5f5f5; font-weight: 600; color: #333; } /* Logs */ .secubox-logs h2 { margin-bottom: 1rem; color: #333; } .logs-controls { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; } .service-selector { flex: 1; min-width: 200px; padding: 0.5rem 1rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.875rem; } .logs-viewer { background: #1e1e1e; color: #d4d4d4; padding: 0; overflow: hidden; } .log-content { font-family: 'Courier New', Courier, monospace; font-size: 0.875rem; line-height: 1.5; padding: 1rem; margin: 0; overflow-x: auto; overflow-y: auto; max-height: 600px; white-space: pre-wrap; word-wrap: break-word; } /* Responsive */ @media (max-width: 768px) { .stats-grid, .health-cards { grid-template-columns: 1fr; } .apps-grid { grid-template-columns: 1fr; } .app-filters { flex-direction: column; } .settings-header { flex-direction: column; align-items: flex-start; } .actions-grid { grid-template-columns: 1fr; } .logs-controls { flex-direction: column; } }