2233 lines
42 KiB
CSS
Executable File
2233 lines
42 KiB
CSS
Executable File
/* Cyberpunk Neon Theme - DOLLHOUSE Replicant Management System MAKE BY CURSOR, CHATGPT, DEEPSEEK SORRY! */
|
|
|
|
:root {
|
|
/* Palette inspired by neon cyberpunk UIs (cyan/magenta/purple) */
|
|
--primary-neon: #00eaff; /* cyan */
|
|
--secondary-neon: #ff00ff; /* magenta */
|
|
--accent-neon: #8a2be2; /* electric purple */
|
|
--danger-neon: #ff0033; /* vivid danger red */
|
|
--rogue-neon: #ff007a; /* neon pink */
|
|
--bg-dark: #0a0f1f; /* deep navy/indigo */
|
|
--bg-darker: #050812;
|
|
--bg-card: #111827; /* dark slate */
|
|
--text-primary: #e2e8f0; /* light slate */
|
|
--text-secondary: #94a3b8; /* slate */
|
|
--border-neon: var(--primary-neon);
|
|
--shadow-neon: 0 0 12px rgba(0, 234, 255, 0.45);
|
|
--shadow-neon-strong: 0 0 22px rgba(0, 234, 255, 0.85);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: "Share Tech Mono", monospace;
|
|
background: var(--bg-dark);
|
|
color: var(--text-primary);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
radial-gradient(
|
|
circle at 20% 80%,
|
|
rgba(0, 234, 255, 0.12) 0%,
|
|
transparent 50%
|
|
),
|
|
radial-gradient(
|
|
circle at 80% 20%,
|
|
rgba(255, 0, 255, 0.1) 0%,
|
|
transparent 50%
|
|
),
|
|
radial-gradient(
|
|
circle at 40% 40%,
|
|
rgba(138, 43, 226, 0.08) 0%,
|
|
transparent 50%
|
|
);
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
}
|
|
|
|
.app {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100vw;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
background: var(--bg-darker);
|
|
border-bottom: 2px solid var(--border-neon);
|
|
box-shadow: var(--shadow-neon);
|
|
padding: 1rem 2rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo h1 {
|
|
font-family: "Orbitron", monospace;
|
|
font-weight: 900;
|
|
font-size: 2.5rem;
|
|
color: var(--primary-neon);
|
|
text-shadow: var(--shadow-neon-strong);
|
|
letter-spacing: 0.2em;
|
|
}
|
|
|
|
.logo p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.status-bar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.status-indicator {
|
|
color: var(--primary-neon);
|
|
font-weight: bold;
|
|
text-shadow: 0 0 5px var(--primary-neon);
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.time {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
/* Main Content */
|
|
.main-content {
|
|
display: flex;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Sidebar */
|
|
.sidebar {
|
|
width: 200px;
|
|
background: var(--bg-darker);
|
|
border-right: 1px solid var(--border-neon);
|
|
padding: 2rem 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.nav-btn {
|
|
background: transparent;
|
|
border: 1px solid var(--border-neon);
|
|
color: var(--text-primary);
|
|
padding: 1rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-align: left;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.nav-btn:hover {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.nav-btn.active {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: var(--shadow-neon-strong);
|
|
}
|
|
|
|
/* Stats */
|
|
.stats {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
padding: 1rem;
|
|
border-radius: 4px;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.stat-card h3 {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
margin-bottom: 0.5rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.stat-number {
|
|
color: var(--primary-neon);
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
text-shadow: 0 0 10px var(--primary-neon);
|
|
}
|
|
|
|
/* Content */
|
|
.content {
|
|
flex: 1;
|
|
padding: 2rem;
|
|
background: var(--bg-dark);
|
|
}
|
|
|
|
.content-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.content-header h2 {
|
|
font-family: "Orbitron", monospace;
|
|
color: var(--primary-neon);
|
|
text-shadow: var(--shadow-neon);
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
border: none;
|
|
padding: 0.8rem 1.5rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow-neon);
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin: 10px;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
box-shadow: var(--shadow-neon-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--border-neon);
|
|
padding: 0.8rem 1.5rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
/*font-size: 0.8rem;*/
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin: 10px;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
/* Replicant Grid */
|
|
.replicant-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.replicant-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 8px;
|
|
padding: 1.5rem;
|
|
box-shadow: var(--shadow-neon);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.replicant-card:hover {
|
|
box-shadow: var(--shadow-neon-strong);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.card-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid rgba(0, 255, 65, 0.3);
|
|
}
|
|
|
|
.card-header h3 {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.2rem;
|
|
text-shadow: 0 0 5px var(--primary-neon);
|
|
}
|
|
|
|
.model {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
background: rgba(0, 255, 65, 0.1);
|
|
padding: 0.3rem 0.6rem;
|
|
border-radius: 4px;
|
|
border: 1px solid var(--border-neon);
|
|
}
|
|
|
|
.card-body {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.status-line,
|
|
.info-line {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.status-label,
|
|
.info-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.status-badge {
|
|
padding: 0.3rem 0.6rem;
|
|
border-radius: 4px;
|
|
font-size: 0.7rem;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--bg-dark);
|
|
}
|
|
|
|
.info-value {
|
|
color: var(--text-primary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.card-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-danger {
|
|
background: transparent;
|
|
color: var(--danger-neon);
|
|
border: 1px solid var(--danger-neon);
|
|
padding: 0.5rem 1rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background: var(--danger-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.header {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.main-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 100%;
|
|
order: 2;
|
|
}
|
|
|
|
.content {
|
|
order: 1;
|
|
}
|
|
|
|
.replicant-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.content-header {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
/* Loading and Error States */
|
|
.loading,
|
|
.error {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 50vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 3px solid var(--bg-card);
|
|
border-top: 3px solid var(--primary-neon);
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.error h2 {
|
|
color: var(--danger-neon);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
margin-bottom: 0.9rem;
|
|
}
|
|
|
|
.form-field label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.form-field input {
|
|
background: #0c1220;
|
|
border: 1px solid rgba(0, 234, 255, 0.35);
|
|
color: var(--text-primary);
|
|
padding: 0.6rem 0.75rem;
|
|
border-radius: 4px;
|
|
outline: none;
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
justify-content: flex-end;
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.error-text {
|
|
color: var(--danger-neon);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Dashboard Styles */
|
|
.dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.dashboard-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 8px;
|
|
padding: 1.5rem;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.dashboard-card h3 {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 0 0 5px var(--primary-neon);
|
|
}
|
|
|
|
.overview-stats {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.overview-stat {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid rgba(0, 255, 65, 0.2);
|
|
}
|
|
|
|
.overview-stat.warning .stat-value {
|
|
color: var(--danger-neon);
|
|
text-shadow: 0 0 5px var(--danger-neon);
|
|
}
|
|
|
|
.stat-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.stat-value {
|
|
color: var(--primary-neon);
|
|
font-weight: bold;
|
|
font-size: 1.1rem;
|
|
text-shadow: 0 0 5px var(--primary-neon);
|
|
}
|
|
|
|
.activity-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.activity-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
padding: 0.8rem;
|
|
background: rgba(0, 255, 65, 0.05);
|
|
border-radius: 4px;
|
|
border-left: 3px solid var(--primary-neon);
|
|
}
|
|
|
|
.activity-time {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.activity-text {
|
|
color: var(--text-primary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.system-status {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.status-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.8rem;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
.status-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: var(--primary-neon);
|
|
box-shadow: 0 0 5px var(--primary-neon);
|
|
}
|
|
|
|
.status-item.warning .status-dot {
|
|
background: var(--accent-neon);
|
|
box-shadow: 0 0 5px var(--accent-neon);
|
|
}
|
|
|
|
.status-text {
|
|
color: var(--text-primary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Scrollbar Styling */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg-darker);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--border-neon);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--primary-neon);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
/* Auth Form Styles */
|
|
.auth-form-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 70vh;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.auth-form {
|
|
width: 100%;
|
|
max-width: 420px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
box-shadow: var(--shadow-neon-strong);
|
|
}
|
|
|
|
.auth-title {
|
|
font-family: "Orbitron", monospace;
|
|
color: var(--primary-neon);
|
|
text-shadow: var(--shadow-neon);
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
margin-bottom: 0.5rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.auth-subtitle {
|
|
color: var(--text-secondary);
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.auth-fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.auth-fields .form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.auth-fields .form-field label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.auth-fields .form-field input {
|
|
background: var(--bg-darker);
|
|
border: 1px solid rgba(0, 234, 255, 0.3);
|
|
color: var(--text-primary);
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 4px;
|
|
font-family: "Share Tech Mono", monospace;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.auth-fields .form-field input:focus {
|
|
outline: none;
|
|
border-color: var(--primary-neon);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.auth-fields .form-field input:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.auth-submit-btn {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
border: none;
|
|
padding: 1rem 2rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-weight: bold;
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow-neon);
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
border-radius: 4px;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.auth-submit-btn:hover:not(:disabled) {
|
|
box-shadow: var(--shadow-neon-strong);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.auth-submit-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
.btn-loading {
|
|
display: inline-block;
|
|
animation: pulse 1.5s infinite;
|
|
}
|
|
|
|
.auth-error {
|
|
background: rgba(255, 0, 51, 0.1);
|
|
border: 1px solid var(--danger-neon);
|
|
color: var(--danger-neon);
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 4px;
|
|
margin-bottom: 1.5rem;
|
|
text-align: center;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.auth-toggle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
margin-top: 2rem;
|
|
padding-top: 1.5rem;
|
|
border-top: 1px solid rgba(0, 234, 255, 0.2);
|
|
}
|
|
|
|
.toggle-text {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.toggle-btn {
|
|
background: transparent;
|
|
color: var(--secondary-neon);
|
|
border: 1px solid var(--secondary-neon);
|
|
padding: 0.5rem 1.5rem;
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.toggle-btn:hover:not(:disabled) {
|
|
background: var(--secondary-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
|
|
}
|
|
|
|
.toggle-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Login Page Specific */
|
|
.login-page {
|
|
min-height: 100vh;
|
|
background: var(--bg-dark);
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.login-header {
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-content {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Register Page Specific */
|
|
.register-page {
|
|
min-height: 100vh;
|
|
background: var(--bg-dark);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.register-header {
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.register-content {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Corp Page Styles */
|
|
.corp-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.corp-header {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 2rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.corp-basic-info {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 2rem;
|
|
text-shadow: var(--shadow-neon-strong);
|
|
margin-bottom: 1rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.corp-basic-info .corp-description {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.corp-stats {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.corp-stats .stat-card {
|
|
min-width: 120px;
|
|
text-align: center;
|
|
}
|
|
|
|
.corp-stats .stat-card h3 {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.corp-stats .stat-card .stat-number {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.staff-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.staff-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem;
|
|
background: rgba(0, 234, 255, 0.05);
|
|
border: 1px solid rgba(0, 234, 255, 0.3);
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.staff-item:hover {
|
|
background: rgba(0, 234, 255, 0.1);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.staff-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.staff-info .staff-id {
|
|
color: var(--text-primary);
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.staff-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.no-staff {
|
|
text-align: center;
|
|
color: var(--text-secondary);
|
|
font-style: italic;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.management-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.no-corp {
|
|
text-align: center;
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.no-corp h2 {
|
|
color: var(--danger-neon);
|
|
margin-bottom: 1rem;
|
|
text-shadow: 0 0 10px var(--danger-neon);
|
|
}
|
|
|
|
.no-corp p {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Responsive Design for Corp Page */
|
|
@media (max-width: 768px) {
|
|
.corp-header {
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.corp-stats {
|
|
justify-content: center;
|
|
}
|
|
|
|
.staff-item {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.staff-info {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.staff-actions {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
/* Corp Page Styles */
|
|
.corp-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.corp-header {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 2rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.corp-basic-info {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 2rem;
|
|
text-shadow: var(--shadow-neon-strong);
|
|
margin-bottom: 1rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.corp-name {
|
|
color: var(--rogue-neon) !important;
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 2rem;
|
|
text-shadow: var(--shadow-neon-strong);
|
|
margin-bottom: 1rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.corp-basic-info .corp-description {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.corp-stats {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.corp-stats .stat-card {
|
|
min-width: 120px;
|
|
text-align: center;
|
|
}
|
|
|
|
.corp-stats .stat-card h3 {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.corp-stats .stat-card .stat-number {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.staff-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.staff-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem;
|
|
background: rgba(0, 234, 255, 0.05);
|
|
border: 1px solid rgba(0, 234, 255, 0.3);
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.staff-item:hover {
|
|
background: rgba(0, 234, 255, 0.1);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.staff-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.staff-info .staff-id {
|
|
color: var(--text-primary);
|
|
font-family: "Share Tech Mono", monospace;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.staff-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.no-staff {
|
|
text-align: center;
|
|
color: var(--text-secondary);
|
|
font-style: italic;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.management-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.no-corp {
|
|
text-align: center;
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.no-corp h2 {
|
|
color: var(--danger-neon);
|
|
margin-bottom: 1rem;
|
|
text-shadow: 0 0 10px var(--danger-neon);
|
|
}
|
|
|
|
.no-corp p {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Responsive Design for Corp Page */
|
|
@media (max-width: 768px) {
|
|
.corp-header {
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.corp-stats {
|
|
justify-content: center;
|
|
}
|
|
|
|
.staff-item {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.staff-info {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.staff-actions {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
/* Modal Styles */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(10, 15, 31, 0.95);
|
|
backdrop-filter: blur(12px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.modal-content {
|
|
background: var(--bg-card);
|
|
border: 2px solid var(--border-neon);
|
|
border-radius: 12px;
|
|
box-shadow:
|
|
var(--shadow-neon-strong),
|
|
0 0 50px rgba(0, 234, 255, 0.3);
|
|
width: 100%;
|
|
max-width: 500px;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
animation: modalAppear 0.3s ease-out;
|
|
position: relative;
|
|
}
|
|
|
|
@keyframes modalAppear {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.8) translateY(-30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1) translateY(0);
|
|
}
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem 2rem 1rem;
|
|
border-bottom: 1px solid rgba(0, 234, 255, 0.3);
|
|
background: rgba(0, 234, 255, 0.05);
|
|
border-radius: 12px 12px 0 0;
|
|
}
|
|
|
|
.modal-header h2 {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.4rem;
|
|
text-shadow: var(--shadow-neon);
|
|
margin: 0;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.modal-close {
|
|
background: transparent;
|
|
border: 1px solid var(--danger-neon);
|
|
color: var(--danger-neon);
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.3s ease;
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
}
|
|
|
|
.modal-close:hover {
|
|
background: var(--danger-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: 0 0 15px rgba(255, 0, 51, 0.7);
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.modal-close:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: flex-end;
|
|
padding: 1.5rem 2rem;
|
|
border-top: 1px solid rgba(0, 234, 255, 0.2);
|
|
margin-top: 1rem;
|
|
background: rgba(0, 234, 255, 0.03);
|
|
border-radius: 0 0 12px 12px;
|
|
}
|
|
|
|
.modal-actions button {
|
|
min-width: 120px;
|
|
}
|
|
|
|
/* Corp Form in Modal */
|
|
.modal-content .corp-form {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
padding: 0 2rem;
|
|
margin: 10px;
|
|
}
|
|
|
|
/* Form Styles for Modal */
|
|
.modal-content .form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.modal-content .form-field label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.modal-content .form-field input,
|
|
.modal-content .form-field textarea {
|
|
background: var(--bg-darker);
|
|
border: 1px solid rgba(0, 234, 255, 0.4);
|
|
color: var(--text-primary);
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 6px;
|
|
font-family: "Share Tech Mono", monospace;
|
|
transition: all 0.3s ease;
|
|
resize: vertical;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.modal-content .form-field input:focus,
|
|
.modal-content .form-field textarea:focus {
|
|
outline: none;
|
|
border-color: var(--primary-neon);
|
|
box-shadow: var(--shadow-neon);
|
|
background: rgba(0, 234, 255, 0.05);
|
|
}
|
|
|
|
.modal-content .form-field input:disabled,
|
|
.modal-content .form-field textarea:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.modal-content .form-field input::placeholder,
|
|
.modal-content .form-field textarea::placeholder {
|
|
color: var(--text-secondary);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.modal-content .form-field textarea {
|
|
min-height: 120px;
|
|
}
|
|
|
|
/* Error message in modal */
|
|
.modal-content .auth-error {
|
|
background: rgba(255, 0, 51, 0.1);
|
|
border: 1px solid var(--danger-neon);
|
|
color: var(--danger-neon);
|
|
padding: 1rem;
|
|
border-radius: 6px;
|
|
margin-bottom: 1.5rem;
|
|
text-align: center;
|
|
font-size: 0.9rem;
|
|
box-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
|
|
}
|
|
|
|
/* Loading state in modal */
|
|
.modal-content .btn-loading {
|
|
display: inline-block;
|
|
animation: pulse 1.5s infinite;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Responsive Modal */
|
|
@media (max-width: 768px) {
|
|
.modal-overlay {
|
|
padding: 1rem;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.modal-content {
|
|
margin: 0;
|
|
max-width: none;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 1.25rem 1.5rem 0.75rem;
|
|
}
|
|
|
|
.modal-header h2 {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.modal-actions {
|
|
flex-direction: column-reverse;
|
|
padding: 1.25rem 1.5rem;
|
|
}
|
|
|
|
.modal-actions button {
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-content .corp-form {
|
|
padding: 0 1.5rem;
|
|
}
|
|
}
|
|
|
|
/* Prevent body scroll when modal is open */
|
|
body.modal-open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Invite Code Styles */
|
|
.invite-section {
|
|
margin-top: 1.5rem;
|
|
padding: 1rem;
|
|
background: rgba(0, 234, 255, 0.05);
|
|
border: 1px solid rgba(0, 234, 255, 0.3);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.invite-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.invite-code-display {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.invite-code {
|
|
background: var(--bg-darker);
|
|
border: 1px solid var(--border-neon);
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
font-family: "Share Tech Mono", monospace;
|
|
color: var(--primary-neon);
|
|
flex: 1;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.invite-copy-btn {
|
|
min-width: 80px;
|
|
white-space: nowrap;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.invite-copy-btn:hover {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
}
|
|
|
|
.invite-hint {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
.no-staff-message {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.no-staff-message .hint {
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.invite-code-display {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.invite-copy-btn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Invite Code Styles */
|
|
.invite-section {
|
|
margin-top: 1.5rem;
|
|
padding: 1.5rem;
|
|
background: rgba(0, 234, 255, 0.05);
|
|
border: 1px solid rgba(0, 234, 255, 0.3);
|
|
border-radius: 8px;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.invite-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 0.8rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.invite-code-display {
|
|
display: flex;
|
|
gap: 0.8rem;
|
|
align-items: center;
|
|
margin-bottom: 0.8rem;
|
|
}
|
|
|
|
.invite-code {
|
|
background: var(--bg-darker);
|
|
border: 1px solid var(--border-neon);
|
|
padding: 0.8rem 1.2rem;
|
|
border-radius: 6px;
|
|
font-family: "Share Tech Mono", monospace;
|
|
color: var(--primary-neon);
|
|
flex: 1;
|
|
font-size: 0.95rem;
|
|
letter-spacing: 0.05em;
|
|
text-shadow: 0 0 5px var(--primary-neon);
|
|
word-break: break-all;
|
|
}
|
|
|
|
.invite-copy-btn {
|
|
min-width: 100px;
|
|
white-space: nowrap;
|
|
transition: all 0.3s ease;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.invite-copy-btn:hover {
|
|
background: var(--primary-neon);
|
|
color: var(--bg-dark);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.invite-hint {
|
|
color: var(--text-secondary);
|
|
font-size: 0.85rem;
|
|
font-style: italic;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.no-staff-message {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.no-staff-message .hint {
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.staff-username {
|
|
color: var(--text-primary);
|
|
font-weight: bold;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.no-corp-actions {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.invite-code-display {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.invite-copy-btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.no-corp-actions {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.no-corp-actions button {
|
|
width: 100%;
|
|
max-width: 250px;
|
|
}
|
|
}
|
|
|
|
.gender-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
color: #fff; /* Для встроенных SVG */
|
|
}
|
|
|
|
.gender-emoji {
|
|
font-size: 18px;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Для внешних SVG */
|
|
img.gender-icon {
|
|
filter: invert(1); /* Делает черные SVG белыми */
|
|
}
|
|
|
|
.replicant-detail {
|
|
padding: 20px;
|
|
}
|
|
|
|
.replicant-info p {
|
|
margin: 10px 0;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.firmware-form {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background: #1a1a1a;
|
|
border: 1px solid #333;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.form-actions {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.replicant-detail-container {
|
|
min-height: 100vh;
|
|
background: var(--bg-dark);
|
|
padding: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.replicant-detail {
|
|
width: 100%;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 8px;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.detail-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem;
|
|
background: var(--bg-darker);
|
|
border-bottom: 1px solid var(--border-neon);
|
|
}
|
|
|
|
.replicant-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.replicant-title h1 {
|
|
margin: 0;
|
|
color: var(--primary-neon);
|
|
font-size: 2rem;
|
|
text-shadow: var(--shadow-neon);
|
|
font-family: "Orbitron", monospace;
|
|
}
|
|
|
|
.gender-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
filter: drop-shadow(0 0 10px var(--primary-neon));
|
|
}
|
|
|
|
.detail-content {
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.info-section {
|
|
background: var(--bg-darker);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 6px;
|
|
padding: 1rem;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.info-section h2 {
|
|
margin: 0 0 1rem 0;
|
|
color: var(--primary-neon);
|
|
font-size: 1.1rem;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px solid var(--border-neon);
|
|
padding-bottom: 0.5rem;
|
|
font-family: "Orbitron", monospace;
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.info-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
.info-item label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.info-item span {
|
|
color: var(--text-primary);
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.status-badge {
|
|
padding: 0.3rem 0.8rem;
|
|
border-radius: 15px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
color: var(--bg-dark);
|
|
display: inline-block;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.description-box {
|
|
background: var(--bg-darker);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 4px;
|
|
padding: 1rem;
|
|
color: var(--text-primary);
|
|
line-height: 1.4;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.firmware-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.stat-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.stat-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.stat-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--primary-neon);
|
|
text-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.stat-bar {
|
|
width: 100%;
|
|
height: 6px;
|
|
background: var(--bg-darker);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.stat-bar-fill {
|
|
height: 100%;
|
|
border-radius: 3px;
|
|
transition: width 0.3s ease;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.firmware-form-section {
|
|
margin-top: 1rem;
|
|
padding: 1.5rem;
|
|
background: var(--bg-darker);
|
|
border-top: 1px solid var(--border-neon);
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.firmware-form-section h3 {
|
|
margin: 0 0 1rem 0;
|
|
color: var(--primary-neon);
|
|
font-size: 1rem;
|
|
text-transform: uppercase;
|
|
font-family: "Orbitron", monospace;
|
|
}
|
|
|
|
.form-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.form-field label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.form-field input {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-neon);
|
|
border-radius: 4px;
|
|
padding: 0.8rem;
|
|
color: var(--text-primary);
|
|
font-family: "Share Tech Mono", monospace;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.form-field input:focus {
|
|
outline: none;
|
|
border-color: var(--primary-neon);
|
|
box-shadow: var(--shadow-neon-strong);
|
|
}
|
|
|
|
.file-info {
|
|
color: var(--primary-neon);
|
|
font-size: 0.8rem;
|
|
text-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.file-name {
|
|
font-weight: 600;
|
|
color: var(--secondary-neon);
|
|
}
|
|
|
|
.form-actions {
|
|
display: flex;
|
|
gap: 0.8rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.loading-container,
|
|
.error-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 200px;
|
|
color: var(--text-primary);
|
|
text-align: center;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 2px solid var(--bg-darker);
|
|
border-left: 2px solid var(--primary-neon);
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
margin-bottom: 1rem;
|
|
box-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.error-container h2 {
|
|
color: var(--danger-neon);
|
|
margin-bottom: 0.5rem;
|
|
text-shadow: var(--shadow-neon);
|
|
}
|
|
|
|
.status-active {
|
|
background: var(--primary-neon) !important;
|
|
}
|
|
.status-inactive {
|
|
background: var(--secondary-neon) !important;
|
|
}
|
|
.status-decommissioned {
|
|
background: var(--danger-neon) !important;
|
|
}
|
|
.status-rogue {
|
|
background: var(--rogue-neon) !important;
|
|
}
|
|
|
|
.gender-male {
|
|
color: var(--primary-neon) !important;
|
|
}
|
|
.gender-female {
|
|
color: var(--secondary-neon) !important;
|
|
}
|
|
.gender-nonbinary {
|
|
color: var(--accent-neon) !important;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.replicant-detail-container {
|
|
padding: 0.5rem;
|
|
}
|
|
.detail-header {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
}
|
|
.replicant-title {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 0.5rem;
|
|
}
|
|
.replicant-title h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
.detail-content {
|
|
padding: 1rem;
|
|
gap: 1rem;
|
|
}
|
|
.info-grid,
|
|
.firmware-info {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.form-actions {
|
|
flex-direction: column;
|
|
}
|
|
.header-actions .btn-primary {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
/* Общие стили остаются как были */
|
|
.detail-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.detail-item.full-width {
|
|
display: block;
|
|
}
|
|
|
|
.detail-item.full-width .detail-label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Отдельный блок для invite code */
|
|
.invite-code-block {
|
|
margin-top: 2rem;
|
|
padding: 1.5rem;
|
|
background: #f8f9fa;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
border: 1px solid #e9ecef;
|
|
}
|
|
|
|
.invite-title {
|
|
margin-bottom: 1rem;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.invite-code {
|
|
padding: 1rem 2rem;
|
|
border-radius: 6px;
|
|
font-family: monospace;
|
|
font-size: 1.2rem;
|
|
border: 2px solid #dee2e6;
|
|
display: inline-block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Стили как в референсе */
|
|
.page-title {
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
margin-bottom: 0.5rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.page-subtitle {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.subtitle-text {
|
|
color: #999;
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.loading-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.neural-spinner {
|
|
width: 60px;
|
|
height: 60px;
|
|
border: 3px solid rgba(0, 255, 65, 0.1);
|
|
border-top: 3px solid var(--primary-neon);
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
margin-bottom: 1.5rem;
|
|
box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.loading-text {
|
|
color: var(--primary-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.system-message {
|
|
color: #666;
|
|
font-family: "Courier New", monospace;
|
|
font-size: 0.85rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.error-card {
|
|
background: rgba(255, 0, 0, 0.1);
|
|
border: 2px solid var(--danger-neon);
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.error-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.error-icon {
|
|
color: var(--danger-neon);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.error-title {
|
|
color: var(--danger-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.error-message {
|
|
color: #fff;
|
|
margin-bottom: 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.system-message.error {
|
|
color: var(--danger-neon);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.retry-btn,
|
|
.refresh-btn {
|
|
background: rgba(0, 255, 65, 0.1);
|
|
border: 2px solid var(--primary-neon);
|
|
color: var(--primary-neon);
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 4px;
|
|
font-family: "Orbitron", monospace;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.retry-btn:hover:not(:disabled),
|
|
.refresh-btn:hover:not(:disabled) {
|
|
background: var(--primary-neon);
|
|
color: #000;
|
|
box-shadow: 0 0 20px var(--primary-neon);
|
|
}
|
|
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.empty-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.empty-title {
|
|
color: var(--accent-neon);
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.empty-message {
|
|
color: #999;
|
|
max-width: 500px;
|
|
margin: 0 auto 2rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.database-header {
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 2px solid var(--primary-neon);
|
|
}
|
|
|
|
.database-title {
|
|
font-family: "Orbitron", monospace;
|
|
font-size: 1.5rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.title-accent {
|
|
color: var(--primary-neon);
|
|
}
|
|
|
|
.title-page {
|
|
color: var(--accent-neon);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Пагинация в стиле референса */
|
|
.fixed-pagination {
|
|
position: sticky;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
backdrop-filter: blur(10px);
|
|
border-top: 2px solid var(--primary-neon);
|
|
padding: 1rem;
|
|
z-index: 100;
|
|
}
|
|
|
|
.pagination-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pagination-text {
|
|
font-family: "Orbitron", monospace;
|
|
color: var(--cyan-neon);
|
|
font-size: 1.1rem;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.pagination-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.pagination-btn {
|
|
position: relative;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
border: 2px solid var(--primary-neon);
|
|
color: var(--primary-neon);
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 6px;
|
|
font-family: "Orbitron", monospace;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
min-width: 120px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.pagination-btn:hover:not(:disabled) {
|
|
background: rgba(0, 255, 65, 0.2);
|
|
box-shadow: 0 0 15px var(--primary-neon);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.pagination-btn:disabled {
|
|
opacity: 0.3;
|
|
cursor: not-allowed;
|
|
border-color: #666;
|
|
color: #666;
|
|
}
|
|
|
|
.btn-icon {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.btn-text {
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.btn-glow {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: radial-gradient(
|
|
circle at center,
|
|
transparent 30%,
|
|
var(--primary-neon) 100%
|
|
);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.pagination-btn:hover:not(:disabled) .btn-glow {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.pagination-indicator {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.indicator-dots {
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: #444;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.dot.active {
|
|
background: var(--primary-neon);
|
|
box-shadow: 0 0 8px var(--primary-neon);
|
|
}
|
|
|
|
.indicator-text {
|
|
font-family: "Orbitron", monospace;
|
|
color: var(--primary-neon);
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Адаптивность */
|
|
@media (max-width: 768px) {
|
|
.page-title {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.pagination-container {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.pagination-controls {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pagination-btn {
|
|
min-width: 100px;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
}
|