Spaces:
Paused
Paused
NextPatent Bot
Feat: Pivot NextPatent to AI technology fusion and commercialization support platform with 6-step wizard
7af4260 | /* ========================================================================== | |
| PatentFusion - Premium Multi-Theme Dashboard CSS | |
| ========================================================================== */ | |
| /* 1. Default Theme System: LIGHT & DARK MODE variables */ | |
| :root { | |
| --bg-dark: #f8fafc; | |
| --bg-card: rgba(255, 255, 255, 0.75); | |
| --bg-card-hover: rgba(255, 255, 255, 0.9); | |
| --bg-input: #ffffff; | |
| --border-color: rgba(15, 23, 42, 0.08); | |
| --border-color-active: rgba(59, 130, 246, 0.6); | |
| --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); | |
| --accent-gradient: linear-gradient(135deg, #0891b2 0%, #2563eb 100%); | |
| --rose-gradient: linear-gradient(135deg, #e11d48 0%, #db2777 100%); | |
| --green-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%); | |
| --blue-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); | |
| --color-text-main: #0f172a; | |
| --color-text-muted: #64748b; | |
| --color-blue: #2563eb; | |
| --color-cyan: #0891b2; | |
| --color-purple: #7c3aed; | |
| --color-rose: #e11d48; | |
| --color-green: #059669; | |
| --color-yellow: #d97706; | |
| --font-outfit: 'Outfit', 'Inter', sans-serif; | |
| --font-inter: 'Inter', sans-serif; | |
| --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); | |
| --glow-opacity: 0.07; | |
| } | |
| body.dark-mode { | |
| --bg-dark: #070a13; | |
| --bg-card: rgba(13, 20, 38, 0.55); | |
| --bg-card-hover: rgba(20, 30, 58, 0.7); | |
| --bg-input: rgba(0, 0, 0, 0.25); | |
| --border-color: rgba(255, 255, 255, 0.08); | |
| --border-color-active: rgba(59, 130, 246, 0.4); | |
| --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); | |
| --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); | |
| --rose-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%); | |
| --green-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%); | |
| --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); | |
| --color-text-main: #f8fafc; | |
| --color-text-muted: #94a3b8; | |
| --color-blue: #3b82f6; | |
| --color-cyan: #06b6d4; | |
| --color-purple: #8b5cf6; | |
| --color-rose: #f43f5e; | |
| --color-green: #10b981; | |
| --color-yellow: #f59e0b; | |
| --glow-opacity: 0.15; | |
| } | |
| /* Reset */ | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| background-color: var(--bg-dark); | |
| color: var(--color-text-main); | |
| font-family: var(--font-inter); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| position: relative; | |
| transition: background-color 0.3s ease, color 0.3s ease; | |
| } | |
| /* Scrollbars */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: rgba(0, 0, 0, 0.03); | |
| } | |
| body.dark-mode ::-webkit-scrollbar-track { | |
| background: rgba(7, 10, 19, 0.5); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(0, 0, 0, 0.12); | |
| border-radius: 4px; | |
| } | |
| body.dark-mode ::-webkit-scrollbar-thumb { | |
| background: rgba(255, 255, 255, 0.15); | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--color-blue); | |
| } | |
| /* Background Glowing Effects */ | |
| .glow-bg { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100vw; | |
| height: 100vh; | |
| z-index: -1; | |
| overflow: hidden; | |
| pointer-events: none; | |
| } | |
| .glow-bg::before, .glow-bg::after { | |
| content: ''; | |
| position: absolute; | |
| width: 45vw; | |
| height: 45vw; | |
| border-radius: 50%; | |
| filter: blur(120px); | |
| opacity: var(--glow-opacity); | |
| animation: rotateGlow 30s infinite alternate ease-in-out; | |
| transition: opacity 0.3s ease; | |
| } | |
| .glow-bg::before { | |
| background: var(--color-blue); | |
| top: -10%; | |
| right: 5%; | |
| } | |
| .glow-bg::after { | |
| background: var(--color-green); | |
| bottom: -10%; | |
| left: 5%; | |
| animation-delay: -10s; | |
| } | |
| @keyframes rotateGlow { | |
| 0% { transform: translate(0, 0) scale(1); } | |
| 100% { transform: translate(8%, 10%) scale(1.15); } | |
| } | |
| /* Glassmorphism Card Utility */ | |
| .glass { | |
| background: var(--bg-card); | |
| backdrop-filter: blur(16px); | |
| -webkit-backdrop-filter: blur(16px); | |
| border: 1px solid var(--border-color); | |
| border-radius: 16px; | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); | |
| transition: var(--transition-smooth); | |
| } | |
| body.dark-mode .glass { | |
| box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.4); | |
| } | |
| .glass:hover { | |
| border-color: var(--border-color-active); | |
| } | |
| /* Text styles */ | |
| .text-blue { color: var(--color-blue) ; } | |
| .text-purple { color: var(--color-purple) ; } | |
| .text-rose { color: var(--color-rose) ; } | |
| .text-green { color: var(--color-green) ; } | |
| .text-cyan { color: var(--color-cyan) ; } | |
| .text-yellow { color: var(--color-yellow) ; } | |
| .font-bold { font-weight: 700; } | |
| /* 2. PORTAL SCREEN (ROLE SELECTION & LOGIN) */ | |
| .portal-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 4rem 2rem; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| transition: var(--transition-smooth); | |
| } | |
| .portal-header { | |
| text-align: center; | |
| margin-bottom: 3.5rem; | |
| } | |
| .portal-header .logo-area { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| gap: 0.8rem; | |
| margin-bottom: 1.5rem; | |
| } | |
| .portal-header .logo-icon { | |
| font-size: 2.2rem; | |
| background: var(--primary-gradient); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .portal-header .logo-text h1 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.8rem; | |
| font-weight: 800; | |
| } | |
| .portal-header .logo-text span { | |
| font-size: 0.8rem; | |
| color: var(--color-text-muted); | |
| } | |
| .portal-header h2 { | |
| font-family: var(--font-outfit); | |
| font-size: 2.2rem; | |
| font-weight: 700; | |
| margin-bottom: 0.75rem; | |
| letter-spacing: -0.5px; | |
| } | |
| .portal-header p { | |
| color: var(--color-text-muted); | |
| font-size: 1rem; | |
| max-width: 600px; | |
| } | |
| .portal-cards-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 2.5rem; | |
| width: 100%; | |
| } | |
| .portal-card { | |
| padding: 3rem 2.5rem; | |
| border-radius: 24px; | |
| cursor: default; | |
| } | |
| .portal-card-inner { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| text-align: center; | |
| } | |
| .role-icon-box { | |
| width: 72px; | |
| height: 72px; | |
| border-radius: 50%; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 2.2rem; | |
| margin-bottom: 1.5rem; | |
| color: white; | |
| } | |
| .role-icon-box.blue-glow { | |
| background: var(--blue-gradient); | |
| box-shadow: 0 0 25px rgba(59, 130, 246, 0.4); | |
| } | |
| .role-icon-box.green-glow { | |
| background: var(--green-gradient); | |
| box-shadow: 0 0 25px rgba(16, 185, 129, 0.4); | |
| } | |
| .portal-card h3 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.5rem; | |
| font-weight: 700; | |
| margin-bottom: 0.75rem; | |
| } | |
| .portal-card .role-desc { | |
| color: var(--color-text-muted); | |
| font-size: 0.95rem; | |
| line-height: 1.6; | |
| margin-bottom: 2rem; | |
| } | |
| .login-form-area { | |
| width: 100%; | |
| text-align: left; | |
| margin-top: 1rem; | |
| border-top: 1px dashed var(--border-color); | |
| padding-top: 2rem; | |
| } | |
| .glass-input { | |
| width: 100%; | |
| background: var(--bg-input); | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-main); | |
| padding: 0.8rem 1rem; | |
| border-radius: 10px; | |
| font-size: 0.9rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .glass-input:focus { | |
| outline: none; | |
| border-color: var(--color-blue); | |
| box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2); | |
| } | |
| .glass-select { | |
| width: 100%; | |
| background: var(--bg-input); | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-main); | |
| padding: 0.8rem 1rem; | |
| border-radius: 10px; | |
| font-size: 0.9rem; | |
| appearance: none; | |
| cursor: pointer; | |
| background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); | |
| background-repeat: no-repeat; | |
| background-position: right 1rem center; | |
| background-size: 1.2rem; | |
| padding-right: 2.5rem; | |
| } | |
| .glass-select:focus { | |
| outline: none; | |
| border-color: var(--color-blue); | |
| } | |
| body.dark-mode .glass-select option { | |
| background-color: #070a13; | |
| color: #fff; | |
| } | |
| .btn-login { | |
| width: 100%; | |
| border: none; | |
| color: white; | |
| padding: 0.9rem; | |
| border-radius: 10px; | |
| font-weight: 600; | |
| font-size: 0.95rem; | |
| cursor: pointer; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| gap: 0.6rem; | |
| transition: var(--transition-smooth); | |
| margin-top: 1rem; | |
| } | |
| .btn-login.blue-gradient-btn { | |
| background: var(--blue-gradient); | |
| box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25); | |
| } | |
| .btn-login.green-gradient-btn { | |
| background: var(--green-gradient); | |
| box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25); | |
| } | |
| .btn-login:hover { | |
| filter: brightness(1.1); | |
| transform: translateY(-1px); | |
| } | |
| .btn-signup { | |
| width: 100%; | |
| background: transparent; | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-muted); | |
| padding: 0.65rem; | |
| border-radius: 10px; | |
| font-size: 0.85rem; | |
| font-weight: 500; | |
| margin-top: 0.75rem; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| text-align: center; | |
| } | |
| .btn-signup:hover { | |
| background: rgba(255, 255, 255, 0.05); | |
| color: var(--color-text-main); | |
| } | |
| /* 3. DASHBOARD COMMON FRAMEWORK (SIDEBAR & WORKSPACE) */ | |
| .dashboard-wrapper { | |
| display: grid; | |
| grid-template-columns: 240px 1fr; | |
| height: 100vh; | |
| overflow: hidden; | |
| } | |
| /* Sidebar */ | |
| .sidebar { | |
| background: rgba(255, 255, 255, 0.02); | |
| backdrop-filter: blur(20px); | |
| border-right: 1px solid var(--border-color); | |
| padding: 2rem 1.25rem; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: space-between; | |
| height: 100%; | |
| z-index: 10; | |
| } | |
| .sidebar-logo { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.6rem; | |
| padding-left: 0.5rem; | |
| margin-bottom: 2.5rem; | |
| } | |
| .sidebar-logo i { | |
| font-size: 1.5rem; | |
| background: var(--primary-gradient); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .sidebar-logo .logo-txt { | |
| font-family: var(--font-outfit); | |
| font-weight: 700; | |
| font-size: 1.2rem; | |
| letter-spacing: -0.5px; | |
| } | |
| .sidebar-nav { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.4rem; | |
| flex: 1; | |
| } | |
| .nav-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.8rem; | |
| padding: 0.85rem 1rem; | |
| color: var(--color-text-muted); | |
| text-decoration: none; | |
| border-radius: 10px; | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| transition: var(--transition-smooth); | |
| position: relative; | |
| } | |
| .nav-item i { | |
| font-size: 1.1rem; | |
| width: 20px; | |
| text-align: center; | |
| } | |
| .nav-item:hover { | |
| background: rgba(255, 255, 255, 0.03); | |
| color: var(--color-text-main); | |
| padding-left: 1.2rem; | |
| } | |
| .nav-item.active { | |
| color: white; | |
| } | |
| .blue-sidebar .nav-item.active { | |
| background: rgba(59, 130, 246, 0.15); | |
| border-left: 4px solid var(--color-blue); | |
| color: var(--color-blue); | |
| } | |
| .green-sidebar .nav-item.active { | |
| background: rgba(16, 185, 129, 0.15); | |
| border-left: 4px solid var(--color-green); | |
| color: var(--color-green); | |
| } | |
| .sidebar-footer .btn-logout { | |
| width: 100%; | |
| background: transparent; | |
| border: 1px solid rgba(239, 68, 68, 0.2); | |
| color: #ef4444; | |
| padding: 0.75rem; | |
| border-radius: 10px; | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 0.5rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .sidebar-footer .btn-logout:hover { | |
| background: rgba(239, 68, 68, 0.1); | |
| border-color: #ef4444; | |
| } | |
| /* Workspace */ | |
| .dashboard-content { | |
| padding: 2.5rem 3rem; | |
| overflow-y: auto; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 2.5rem; | |
| } | |
| .dashboard-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .welcome-msg h2 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.6rem; | |
| font-weight: 700; | |
| margin-bottom: 0.25rem; | |
| } | |
| .welcome-msg p { | |
| color: var(--color-text-muted); | |
| font-size: 0.88rem; | |
| } | |
| .dashboard-meta-actions { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .db-status-badge { | |
| background: rgba(255, 255, 255, 0.03); | |
| border: 1px solid var(--border-color); | |
| padding: 0.5rem 1rem; | |
| border-radius: 20px; | |
| font-size: 0.8rem; | |
| color: var(--color-text-muted); | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .btn-theme-toggle { | |
| width: 38px; | |
| height: 38px; | |
| border-radius: 50%; | |
| border: 1px solid var(--border-color); | |
| background: rgba(255, 255, 255, 0.03); | |
| color: var(--color-text-main); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-theme-toggle:hover { | |
| background: var(--color-blue); | |
| color: white; | |
| border-color: var(--color-blue); | |
| } | |
| /* 4. METRICS GRID */ | |
| .metrics-grid { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr) 260px; | |
| gap: 2.2rem; | |
| align-items: stretch; | |
| margin-bottom: 3.5rem; | |
| } | |
| .metric-card { | |
| padding: 1.25rem 1.5rem; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| } | |
| .metric-label { | |
| font-size: 0.78rem; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| color: var(--color-text-muted); | |
| font-weight: 600; | |
| margin-bottom: 0.4rem; | |
| } | |
| .metric-value { | |
| font-family: var(--font-outfit); | |
| font-size: 2rem; | |
| font-weight: 800; | |
| line-height: 1; | |
| } | |
| .metric-value .unit { | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| color: var(--color-text-muted); | |
| margin-left: 0.2rem; | |
| } | |
| .start-action-card { | |
| display: flex; | |
| } | |
| .btn-start-analysis { | |
| width: 100%; | |
| border: none; | |
| color: white; | |
| border-radius: 16px; | |
| font-weight: 700; | |
| font-size: 1rem; | |
| cursor: pointer; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| gap: 0.6rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-start-analysis.blue-pulse-btn { | |
| background: var(--blue-gradient); | |
| box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2); | |
| border: 1px solid rgba(59, 130, 246, 0.4); | |
| } | |
| .btn-start-analysis.green-pulse-btn { | |
| background: var(--green-gradient); | |
| box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); | |
| border: 1px solid rgba(16, 185, 129, 0.4); | |
| } | |
| .btn-start-analysis:hover { | |
| transform: translateY(-2px); | |
| filter: brightness(1.1); | |
| } | |
| /* 5. DASHBOARD DETAILS GRID */ | |
| .dashboard-details-grid { | |
| display: grid; | |
| grid-template-columns: 1.2fr 2fr; | |
| gap: 3.5rem; | |
| margin-bottom: 2.5rem; | |
| } | |
| .dashboard-details-grid.grid-3col { | |
| grid-template-columns: 1fr 2fr; | |
| } | |
| .span-2 { | |
| grid-column: span 2; | |
| } | |
| .panel-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-bottom: 1.25rem; | |
| padding-bottom: 0.75rem; | |
| border-bottom: 1px solid var(--border-color); | |
| } | |
| .panel-header.flex-header { | |
| align-items: flex-start; | |
| } | |
| .panel-header h3 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.1rem; | |
| font-weight: 600; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .panel-header p { | |
| font-size: 0.78rem; | |
| color: var(--color-text-muted); | |
| margin-top: 0.15rem; | |
| } | |
| .badge-mini { | |
| font-size: 0.7rem; | |
| font-weight: 600; | |
| padding: 0.25rem 0.5rem; | |
| border-radius: 6px; | |
| background: rgba(59, 130, 246, 0.1); | |
| color: var(--color-blue); | |
| border: 1px solid rgba(59, 130, 246, 0.2); | |
| } | |
| .badge-mini.green { | |
| background: rgba(16, 185, 129, 0.1); | |
| color: var(--color-green); | |
| border-color: rgba(16, 185, 129, 0.2); | |
| } | |
| .details-left, .details-right { | |
| padding: 2.2rem; | |
| } | |
| /* Recent Proposal List */ | |
| .proposal-feed { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1.1rem; | |
| max-height: 420px; | |
| overflow-y: auto; | |
| } | |
| .proposal-feed-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| padding: 1.2rem; | |
| border-radius: 12px; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| transition: var(--transition-smooth); | |
| cursor: pointer; | |
| } | |
| .proposal-feed-item:hover { | |
| background: rgba(255, 255, 255, 0.05); | |
| border-color: var(--border-color-active); | |
| transform: translateX(3px); | |
| } | |
| .feed-icon { | |
| width: 42px; | |
| height: 42px; | |
| border-radius: 50%; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 1.2rem; | |
| flex-shrink: 0; | |
| } | |
| .feed-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--color-blue); } | |
| .feed-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--color-yellow); } | |
| .feed-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); } | |
| .feed-info { | |
| flex: 1; | |
| } | |
| .feed-tag { | |
| font-size: 0.65rem; | |
| font-weight: 700; | |
| text-transform: uppercase; | |
| padding: 0.15rem 0.4rem; | |
| border-radius: 4px; | |
| display: inline-block; | |
| margin-bottom: 0.25rem; | |
| } | |
| .tag-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-blue); } | |
| .tag-orange { background: rgba(249, 115, 22, 0.1); color: var(--color-yellow); } | |
| .tag-purple { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); } | |
| .feed-info h4 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| margin-bottom: 0.15rem; | |
| } | |
| .feed-info p { | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| } | |
| .feed-score { | |
| text-align: right; | |
| font-family: var(--font-outfit); | |
| } | |
| .feed-score strong { | |
| font-size: 1.4rem; | |
| font-weight: 700; | |
| } | |
| .feed-score span { | |
| font-size: 0.7rem; | |
| color: var(--color-text-muted); | |
| margin-left: 0.1rem; | |
| } | |
| /* Researcher List */ | |
| .researcher-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.8rem; | |
| } | |
| .researcher-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| padding: 1rem; | |
| border-radius: 12px; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| transition: var(--transition-smooth); | |
| } | |
| .researcher-item:hover { | |
| background: rgba(255, 255, 255, 0.05); | |
| } | |
| .avatar { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 50%; | |
| background: rgba(16, 185, 129, 0.1); | |
| color: var(--color-green); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 1.1rem; | |
| flex-shrink: 0; | |
| } | |
| .res-info { | |
| flex: 1; | |
| } | |
| .res-info h4 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| } | |
| .res-info p { | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| } | |
| .res-badge { | |
| font-size: 0.8rem; | |
| font-weight: 600; | |
| background: rgba(255, 255, 255, 0.05); | |
| border: 1px solid var(--border-color); | |
| padding: 0.25rem 0.5rem; | |
| border-radius: 8px; | |
| } | |
| /* Canvas Graph container */ | |
| .dashboard-graph-canvas-container { | |
| position: relative; | |
| height: 380px; | |
| background: rgba(0, 0, 0, 0.2); | |
| border-radius: 12px; | |
| overflow: hidden; | |
| border: 1px solid var(--border-color); | |
| } | |
| .dashboard-graph-canvas-container canvas { | |
| width: 100%; | |
| height: 100%; | |
| display: block; | |
| } | |
| .canvas-instructions { | |
| position: absolute; | |
| bottom: 0.75rem; | |
| left: 0.75rem; | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| background: rgba(7, 10, 19, 0.8); | |
| padding: 0.35rem 0.65rem; | |
| border-radius: 6px; | |
| pointer-events: none; | |
| border: 1px solid var(--border-color); | |
| } | |
| .graph-legend { | |
| display: flex; | |
| gap: 0.8rem; | |
| } | |
| .legend-item { | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| display: flex; | |
| align-items: center; | |
| gap: 0.35rem; | |
| } | |
| .legend-dot { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| display: inline-block; | |
| } | |
| .legend-dot.my-pat { background-color: var(--color-blue); } | |
| .legend-dot.locked { background-color: #64748b; } | |
| .legend-dot.unlocked { background-color: var(--color-purple); } | |
| .legend-dot.dept { background-color: var(--color-green); } | |
| .legend-dot.prof-pat { background-color: var(--color-cyan); } | |
| .legend-dot.std-idea { background-color: var(--color-purple); } | |
| .legend-dot.ext-pat { background-color: var(--color-yellow); } | |
| .dashboard-graph-controls { | |
| position: absolute; | |
| top: 0.75rem; | |
| right: 0.75rem; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.35rem; | |
| } | |
| .btn-zoom-action { | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 6px; | |
| border: 1px solid var(--border-color); | |
| background: rgba(7, 10, 19, 0.85); | |
| color: white; | |
| cursor: pointer; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-zoom-action:hover { | |
| background: var(--color-blue); | |
| } | |
| /* 6. BOTTOM INTEGRATION MANAGER */ | |
| .integration-manager-panel { | |
| padding: 1.5rem; | |
| } | |
| .pending-requests-table-container { | |
| overflow-x: auto; | |
| margin-top: 1rem; | |
| } | |
| .integration-table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| text-align: left; | |
| font-size: 0.85rem; | |
| } | |
| .integration-table th, .integration-table td { | |
| padding: 1rem; | |
| border-bottom: 1px solid var(--border-color); | |
| } | |
| .integration-table th { | |
| font-weight: 600; | |
| color: var(--color-text-muted); | |
| font-size: 0.78rem; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| } | |
| .integration-table tr:last-child td { | |
| border-bottom: none; | |
| } | |
| .integration-table tbody tr { | |
| transition: var(--transition-smooth); | |
| } | |
| .integration-table tbody tr:hover { | |
| background: rgba(255, 255, 255, 0.015); | |
| } | |
| .btn-approve-asset { | |
| background: rgba(16, 185, 129, 0.1); | |
| border: 1px solid rgba(16, 185, 129, 0.3); | |
| color: var(--color-green); | |
| padding: 0.4rem 0.8rem; | |
| border-radius: 6px; | |
| font-size: 0.78rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-approve-asset:hover { | |
| background: var(--color-green); | |
| color: white; | |
| } | |
| /* 7. WIZARD OVERLAY & LAYOUT */ | |
| .modal-backdrop { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100vw; | |
| height: 100vh; | |
| background: rgba(3, 5, 10, 0.88); | |
| backdrop-filter: blur(15px); | |
| -webkit-backdrop-filter: blur(15px); | |
| z-index: 1000; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| opacity: 1; | |
| pointer-events: auto; | |
| transition: opacity 0.3s ease; | |
| } | |
| .modal-backdrop.hidden { | |
| opacity: 0; | |
| pointer-events: none; | |
| } | |
| .wizard-modal-card { | |
| width: 1100px; | |
| max-width: 95vw; | |
| height: 680px; | |
| max-height: 90vh; | |
| border-radius: 24px; | |
| display: flex; | |
| flex-direction: column; | |
| overflow: hidden; | |
| box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); | |
| } | |
| .wizard-header { | |
| padding: 1.5rem 2rem; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| border-bottom: 1px solid var(--border-color); | |
| } | |
| .wizard-profile-tag { | |
| font-size: 0.68rem; | |
| font-weight: 700; | |
| text-transform: uppercase; | |
| background: rgba(59, 130, 246, 0.15); | |
| color: var(--color-blue); | |
| padding: 0.2rem 0.5rem; | |
| border-radius: 4px; | |
| display: inline-block; | |
| margin-bottom: 0.25rem; | |
| } | |
| .wizard-header h3 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.25rem; | |
| font-weight: 700; | |
| } | |
| .btn-close-wizard, .btn-close-modal { | |
| background: transparent; | |
| border: none; | |
| color: var(--color-text-muted); | |
| font-size: 1.2rem; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 50%; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .btn-close-wizard:hover, .btn-close-modal:hover { | |
| background: rgba(255, 255, 255, 0.05); | |
| color: white; | |
| } | |
| /* Progress nodes track */ | |
| .wizard-progress-bar-container { | |
| padding: 1.5rem 3rem; | |
| background: rgba(0, 0, 0, 0.1); | |
| position: relative; | |
| } | |
| .progress-line-bg { | |
| position: absolute; | |
| top: 2.25rem; | |
| left: 6%; | |
| right: 6%; | |
| height: 3px; | |
| background: rgba(255, 255, 255, 0.05); | |
| z-index: 0; | |
| } | |
| .progress-line-fill { | |
| height: 100%; | |
| background: var(--primary-gradient); | |
| width: 0%; | |
| transition: width 0.3s ease; | |
| } | |
| .progress-steps-list { | |
| display: flex; | |
| justify-content: space-between; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .progress-step-node { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 0.5rem; | |
| width: 80px; | |
| cursor: default; | |
| } | |
| .node-dot { | |
| width: 26px; | |
| height: 26px; | |
| border-radius: 50%; | |
| background: #0f172a; | |
| border: 2px solid var(--border-color); | |
| color: var(--color-text-muted); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 0.78rem; | |
| font-weight: 700; | |
| transition: var(--transition-smooth); | |
| } | |
| .progress-step-node span { | |
| font-size: 0.7rem; | |
| color: var(--color-text-muted); | |
| font-weight: 600; | |
| text-align: center; | |
| white-space: nowrap; | |
| } | |
| .progress-step-node.active .node-dot { | |
| background: var(--color-blue); | |
| border-color: var(--color-blue); | |
| color: white; | |
| box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); | |
| } | |
| .progress-step-node.active span { | |
| color: white; | |
| } | |
| .progress-step-node.completed .node-dot { | |
| background: var(--color-green); | |
| border-color: var(--color-green); | |
| color: white; | |
| } | |
| .progress-step-node.completed span { | |
| color: var(--color-green); | |
| } | |
| /* Slides container */ | |
| .wizard-slides-container { | |
| flex: 1; | |
| padding: 2rem 3rem; | |
| overflow-y: auto; | |
| position: relative; | |
| } | |
| .wizard-slide { | |
| display: none; | |
| height: 100%; | |
| flex-direction: column; | |
| } | |
| .wizard-slide.active { | |
| display: flex; | |
| } | |
| .wizard-slide h4 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.3rem; | |
| font-weight: 700; | |
| margin-bottom: 0.4rem; | |
| } | |
| .slide-desc { | |
| color: var(--color-text-muted); | |
| font-size: 0.88rem; | |
| margin-bottom: 1.5rem; | |
| } | |
| /* Slide 1 specific */ | |
| .slide-welcome { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100%; | |
| text-align: center; | |
| } | |
| .orb-pulsing { | |
| width: 68px; | |
| height: 68px; | |
| border-radius: 50%; | |
| background: rgba(59, 130, 246, 0.08); | |
| border: 1px solid rgba(59, 130, 246, 0.2); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 1.8rem; | |
| color: var(--color-blue); | |
| margin-bottom: 1.5rem; | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); } | |
| 70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); } | |
| } | |
| .slide-inner-box { | |
| width: 100%; | |
| max-width: 600px; | |
| background: rgba(255, 255, 255, 0.015); | |
| border: 1px solid var(--border-color); | |
| border-radius: 12px; | |
| padding: 1.25rem; | |
| text-align: left; | |
| margin-top: 1.5rem; | |
| } | |
| .slide-inner-box h5 { | |
| font-size: 0.85rem; | |
| color: var(--color-text-muted); | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| margin-bottom: 0.75rem; | |
| border-bottom: 1px solid var(--border-color); | |
| padding-bottom: 0.4rem; | |
| } | |
| .wizard-history-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.5rem; | |
| } | |
| .wizard-history-item { | |
| display: flex; | |
| justify-content: space-between; | |
| padding: 0.5rem 0.75rem; | |
| background: rgba(255, 255, 255, 0.02); | |
| border-radius: 8px; | |
| font-size: 0.8rem; | |
| } | |
| .wizard-history-item span { | |
| color: var(--color-text-muted); | |
| } | |
| /* Slide 2: Scope 선택 */ | |
| .scope-cards-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 1.5rem; | |
| margin-top: 1rem; | |
| } | |
| .scope-select-card { | |
| border: 1px solid var(--border-color); | |
| border-radius: 16px; | |
| background: rgba(255, 255, 255, 0.015); | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .scope-select-card input { | |
| display: none; | |
| } | |
| .scope-select-card .card-body { | |
| padding: 2rem; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| text-align: center; | |
| } | |
| .scope-select-card .icon-circle { | |
| width: 52px; | |
| height: 52px; | |
| border-radius: 50%; | |
| background: rgba(255, 255, 255, 0.03); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 1.4rem; | |
| color: var(--color-text-muted); | |
| margin-bottom: 1.25rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .scope-select-card h5 { | |
| font-size: 1.1rem; | |
| font-weight: 600; | |
| margin-bottom: 0.5rem; | |
| } | |
| .scope-select-card p { | |
| font-size: 0.82rem; | |
| color: var(--color-text-muted); | |
| } | |
| .scope-select-card:hover { | |
| border-color: var(--border-color-active); | |
| background: rgba(255, 255, 255, 0.03); | |
| } | |
| .scope-select-card input:checked + .card-body { | |
| border-radius: 15px; | |
| } | |
| .scope-select-card:has(input:checked) { | |
| border-color: var(--color-blue); | |
| background: rgba(59, 130, 246, 0.05); | |
| } | |
| .scope-select-card:has(input:checked) .icon-circle { | |
| background: var(--color-blue); | |
| color: white; | |
| } | |
| /* Slide 3: 융합 방식 복수 선택 */ | |
| .plans-checkbox-grid { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 0.8rem; | |
| } | |
| .plan-checkbox-card { | |
| border: 1px solid var(--border-color); | |
| border-radius: 12px; | |
| background: rgba(255, 255, 255, 0.01); | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .plan-checkbox-card input { | |
| display: none; | |
| } | |
| .plan-checkbox-card .card-content { | |
| padding: 1rem 1.25rem; | |
| display: grid; | |
| grid-template-columns: 32px 1fr 24px; | |
| align-items: center; | |
| gap: 0.8rem; | |
| } | |
| .plan-checkbox-card .icon-area { | |
| font-size: 1.2rem; | |
| } | |
| .plan-checkbox-card h5 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| margin-bottom: 0.15rem; | |
| } | |
| .plan-checkbox-card p { | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| line-height: 1.3; | |
| } | |
| .checkbox-indicator { | |
| color: rgba(255, 255, 255, 0.05); | |
| font-size: 1.1rem; | |
| transition: var(--transition-smooth); | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .plan-checkbox-card:hover { | |
| background: rgba(255, 255, 255, 0.03); | |
| border-color: var(--border-color-active); | |
| } | |
| .plan-checkbox-card:has(input:checked) { | |
| border-color: var(--color-purple); | |
| background: rgba(124, 58, 237, 0.05); | |
| } | |
| .plan-checkbox-card:has(input:checked) .checkbox-indicator { | |
| color: var(--color-purple); | |
| } | |
| /* Slide 4: 기준 특허/대상 선택 */ | |
| .base-patent-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.8rem; | |
| max-height: 320px; | |
| overflow-y: auto; | |
| } | |
| .base-pat-radio-card { | |
| border: 1px solid var(--border-color); | |
| border-radius: 10px; | |
| padding: 0.85rem 1.25rem; | |
| background: rgba(255, 255, 255, 0.01); | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .base-pat-radio-card input { | |
| margin-right: 0.2rem; | |
| } | |
| .base-pat-radio-card .pat-details { | |
| flex: 1; | |
| } | |
| .base-pat-radio-card .pat-details h5 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| margin-bottom: 0.15rem; | |
| } | |
| .base-pat-radio-card .pat-details span { | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| } | |
| .base-pat-radio-card:hover { | |
| background: rgba(255, 255, 255, 0.03); | |
| } | |
| .base-pat-radio-card:has(input:checked) { | |
| border-color: var(--color-blue); | |
| background: rgba(59, 130, 246, 0.05); | |
| } | |
| .wizard-step4-tabs-header { | |
| display: flex; | |
| gap: 0.5rem; | |
| margin-bottom: 1rem; | |
| border-bottom: 1px solid var(--border-color); | |
| padding-bottom: 0.5rem; | |
| } | |
| .wizard-step4-tab-btn { | |
| background: transparent; | |
| border: none; | |
| color: var(--color-text-muted); | |
| padding: 0.4rem 1rem; | |
| font-size: 0.85rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .wizard-step4-tab-btn.active { | |
| color: var(--color-green); | |
| border-bottom: 2px solid var(--color-green); | |
| } | |
| .subtab-pane { | |
| display: none; | |
| } | |
| .subtab-pane.active { | |
| display: block; | |
| } | |
| .checkbox-selection-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.6rem; | |
| max-height: 280px; | |
| overflow-y: auto; | |
| } | |
| .checkbox-select-item { | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| padding: 0.75rem 1rem; | |
| background: rgba(255, 255, 255, 0.01); | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.8rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .checkbox-select-item .item-inner { | |
| font-size: 0.82rem; | |
| } | |
| .checkbox-select-item .item-inner strong { | |
| font-weight: 600; | |
| margin-right: 0.5rem; | |
| } | |
| .checkbox-select-item .item-inner span { | |
| color: var(--color-text-muted); | |
| } | |
| .checkbox-select-item:hover { | |
| background: rgba(255, 255, 255, 0.03); | |
| } | |
| .checkbox-select-item:has(input:checked) { | |
| border-color: var(--color-green); | |
| background: rgba(16, 185, 129, 0.05); | |
| } | |
| /* Slide 5: 융합 분석 결과 */ | |
| .slide-results-layout { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1.25rem; | |
| height: 100%; | |
| } | |
| .wizard-results-tab-header { | |
| display: flex; | |
| gap: 0.5rem; | |
| border-bottom: 1px solid var(--border-color); | |
| padding-bottom: 0.5rem; | |
| } | |
| .wizard-results-tab-btn { | |
| background: transparent; | |
| border: none; | |
| color: var(--color-text-muted); | |
| padding: 0.4rem 1.2rem; | |
| font-size: 0.85rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| border-radius: 8px 8px 0 0; | |
| transition: var(--transition-smooth); | |
| } | |
| .wizard-results-tab-btn.active { | |
| background: rgba(255, 255, 255, 0.03); | |
| color: white; | |
| border-bottom: 2px solid var(--color-blue); | |
| } | |
| .wizard-results-tab-content { | |
| flex: 1; | |
| } | |
| .results-pane { | |
| display: none; | |
| height: 100%; | |
| } | |
| .results-pane.active { | |
| display: block; | |
| } | |
| .section-sub-title { | |
| font-size: 0.82rem; | |
| color: var(--color-text-muted); | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| margin-bottom: 0.8rem; | |
| } | |
| .fusion-top-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.75rem; | |
| max-height: 290px; | |
| overflow-y: auto; | |
| } | |
| .fusion-project-card { | |
| display: flex; | |
| align-items: center; | |
| gap: 1.25rem; | |
| padding: 0.9rem 1.25rem; | |
| border-radius: 12px; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| } | |
| .project-num { | |
| width: 24px; | |
| height: 24px; | |
| border-radius: 50%; | |
| background: var(--color-blue); | |
| color: white; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-weight: 700; | |
| font-size: 0.75rem; | |
| } | |
| .project-info { | |
| flex: 1; | |
| } | |
| .project-info h6 { | |
| font-size: 0.85rem; | |
| font-weight: 600; | |
| color: var(--color-text-muted); | |
| margin-bottom: 0.15rem; | |
| } | |
| .project-info h5 { | |
| font-size: 0.95rem; | |
| font-weight: 700; | |
| } | |
| .project-match { | |
| text-align: right; | |
| background: rgba(5, 150, 105, 0.1); | |
| border: 1px solid rgba(5, 150, 105, 0.2); | |
| color: var(--color-green); | |
| padding: 0.35rem 0.65rem; | |
| border-radius: 8px; | |
| font-size: 0.82rem; | |
| font-weight: 700; | |
| } | |
| .wizard-canvas-wrapper { | |
| position: relative; | |
| height: 310px; | |
| background: rgba(0, 0, 0, 0.25); | |
| border-radius: 12px; | |
| border: 1px solid var(--border-color); | |
| overflow: hidden; | |
| } | |
| .wizard-canvas-wrapper canvas { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .wizard-canvas-legend { | |
| position: absolute; | |
| bottom: 0.75rem; | |
| right: 0.75rem; | |
| display: flex; | |
| gap: 0.6rem; | |
| background: rgba(7, 10, 19, 0.8); | |
| padding: 0.3rem 0.6rem; | |
| border-radius: 6px; | |
| } | |
| /* BM Report styling */ | |
| .business-proposal-report-view { | |
| padding: 1.5rem; | |
| max-height: 310px; | |
| overflow-y: auto; | |
| border-radius: 12px; | |
| position: relative; | |
| } | |
| .business-proposal-report-view h4 { | |
| font-size: 1.2rem; | |
| font-weight: 700; | |
| margin-bottom: 0.15rem; | |
| } | |
| .report-subtitle-tag { | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| text-transform: uppercase; | |
| display: inline-block; | |
| margin-bottom: 1.25rem; | |
| } | |
| .report-block { | |
| margin-bottom: 1rem; | |
| } | |
| .report-block h6 { | |
| font-size: 0.85rem; | |
| font-weight: 700; | |
| margin-bottom: 0.35rem; | |
| color: var(--color-blue); | |
| display: flex; | |
| align-items: center; | |
| gap: 0.4rem; | |
| } | |
| .report-block p { | |
| font-size: 0.82rem; | |
| line-height: 1.5; | |
| color: var(--color-text-main); | |
| } | |
| /* Slide 6: 결과 활용 */ | |
| .action-columns-grid { | |
| display: grid; | |
| grid-template-columns: 1.2fr 1fr; | |
| gap: 2rem; | |
| } | |
| .action-btn-links { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.6rem; | |
| } | |
| .action-link-item { | |
| border: 1px solid var(--border-color); | |
| background: rgba(255, 255, 255, 0.01); | |
| padding: 0.85rem 1.25rem; | |
| border-radius: 12px; | |
| cursor: pointer; | |
| color: white; | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| transition: var(--transition-smooth); | |
| text-align: left; | |
| } | |
| .action-link-item i:first-child { | |
| font-size: 1.3rem; | |
| color: var(--color-blue); | |
| width: 24px; | |
| text-align: center; | |
| } | |
| .action-link-item i:last-child { | |
| font-size: 0.88rem; | |
| color: var(--color-text-muted); | |
| transition: var(--transition-smooth); | |
| } | |
| .action-link-item .txt { | |
| flex: 1; | |
| } | |
| .action-link-item h5 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| margin-bottom: 0.15rem; | |
| } | |
| .action-link-item p { | |
| font-size: 0.72rem; | |
| color: var(--color-text-muted); | |
| } | |
| .action-link-item:hover { | |
| background: rgba(255, 255, 255, 0.04); | |
| border-color: var(--border-color-active); | |
| padding-left: 1.5rem; | |
| } | |
| .action-link-item:hover i:last-child { | |
| transform: translateX(3px); | |
| color: white; | |
| } | |
| .integration-action-box { | |
| padding: 1.5rem; | |
| border-radius: 16px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1rem; | |
| } | |
| .integration-action-box .box-title { | |
| font-family: var(--font-outfit); | |
| font-size: 1rem; | |
| font-weight: 700; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .integration-action-box .box-desc { | |
| font-size: 0.78rem; | |
| color: var(--color-text-muted); | |
| line-height: 1.5; | |
| } | |
| .institution-select-row label { | |
| display: block; | |
| font-size: 0.75rem; | |
| font-weight: 600; | |
| margin-bottom: 0.35rem; | |
| } | |
| .btn-register-to-inst { | |
| width: 100%; | |
| border: none; | |
| color: white; | |
| padding: 0.85rem; | |
| border-radius: 10px; | |
| font-weight: 700; | |
| font-size: 0.9rem; | |
| cursor: pointer; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .registered-list-hint { | |
| font-size: 0.75rem; | |
| border-top: 1px dashed var(--border-color); | |
| padding-top: 0.8rem; | |
| } | |
| .registered-list-hint p { | |
| margin-top: 0.35rem; | |
| font-weight: 600; | |
| } | |
| /* Spinner */ | |
| .spinner-overlay { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: rgba(7, 10, 19, 0.9); | |
| z-index: 100; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| text-align: center; | |
| } | |
| .double-spin-neon { | |
| width: 48px; | |
| height: 48px; | |
| border: 3px solid rgba(59, 130, 246, 0.15); | |
| border-radius: 50%; | |
| border-top-color: var(--color-blue); | |
| border-bottom-color: var(--color-purple); | |
| margin: 0 auto 1.25rem; | |
| animation: spin 1s infinite linear; | |
| } | |
| .spinner-overlay h5 { | |
| font-family: var(--font-outfit); | |
| font-size: 1rem; | |
| font-weight: 700; | |
| margin-bottom: 0.25rem; | |
| } | |
| .spinner-overlay p { | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| } | |
| /* Wizard Footer Navigation Controls */ | |
| .wizard-footer-nav { | |
| padding: 1.25rem 2rem; | |
| border-top: 1px solid var(--border-color); | |
| display: flex; | |
| justify-content: space-between; | |
| } | |
| .btn-wizard-control { | |
| background: rgba(255, 255, 255, 0.03); | |
| border: 1px solid var(--border-color); | |
| color: white; | |
| padding: 0.7rem 1.5rem; | |
| border-radius: 10px; | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-wizard-control:hover:not(:disabled) { | |
| background: rgba(255, 255, 255, 0.08); | |
| } | |
| .btn-wizard-control:disabled { | |
| opacity: 0.3; | |
| cursor: not-allowed; | |
| } | |
| /* 8. COMMON ADD-ON FOOTER & MODALS */ | |
| .metrics-grid { | |
| gap: 2rem; | |
| } | |
| .dashboard-details-grid { | |
| gap: 2rem; | |
| } | |
| .dashboard-footer-services { | |
| display: grid; | |
| grid-template-columns: repeat(7, 1fr); | |
| gap: 0.8rem; | |
| margin-top: 1.5rem; | |
| border-top: 1px solid var(--border-color); | |
| padding-top: 1.5rem; | |
| } | |
| .btn-footer-service-chip { | |
| background: rgba(255, 255, 255, 0.01); | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-muted); | |
| padding: 0.65rem 0.5rem; | |
| border-radius: 10px; | |
| font-size: 0.78rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 0.4rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-footer-service-chip i { | |
| font-size: 1.1rem; | |
| color: var(--color-text-muted); | |
| } | |
| .btn-footer-service-chip:hover { | |
| background: rgba(255, 255, 255, 0.05); | |
| color: white; | |
| border-color: var(--border-color-active); | |
| transform: translateY(-2px); | |
| } | |
| .btn-footer-service-chip:hover i { | |
| color: var(--color-blue); | |
| } | |
| .card-medium { | |
| width: 500px; | |
| } | |
| .card-large { | |
| width: 800px; | |
| } | |
| .modal-card { | |
| border-radius: 20px; | |
| display: flex; | |
| flex-direction: column; | |
| overflow: hidden; | |
| box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); | |
| } | |
| .modal-header { | |
| padding: 1.25rem 1.5rem; | |
| border-bottom: 1px solid var(--border-color); | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .modal-header h3 { | |
| font-family: var(--font-outfit); | |
| font-size: 1.1rem; | |
| font-weight: 700; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .modal-body { | |
| padding: 1.5rem; | |
| } | |
| .modal-body p { | |
| font-size: 0.85rem; | |
| line-height: 1.5; | |
| color: var(--color-text-muted); | |
| margin-bottom: 1.2rem; | |
| } | |
| .max-height-modal-body { | |
| max-height: 400px; | |
| overflow-y: auto; | |
| } | |
| .modal-footer { | |
| padding: 1rem 1.5rem; | |
| border-top: 1px solid var(--border-color); | |
| display: flex; | |
| justify-content: flex-end; | |
| } | |
| .btn-primary { | |
| background: var(--blue-gradient); | |
| border: none; | |
| color: white; | |
| padding: 0.65rem 1.5rem; | |
| border-radius: 8px; | |
| font-weight: 600; | |
| font-size: 0.88rem; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-primary:hover { | |
| filter: brightness(1.1); | |
| } | |
| /* Modals inputs specifically */ | |
| .search-input-row { | |
| display: flex; | |
| gap: 0.5rem; | |
| margin-bottom: 1.2rem; | |
| } | |
| .search-input-row .glass-input { | |
| flex: 1; | |
| } | |
| .expired-search-results-list { | |
| min-height: 200px; | |
| max-height: 300px; | |
| overflow-y: auto; | |
| border: 1px solid var(--border-color); | |
| border-radius: 10px; | |
| background: rgba(0, 0, 0, 0.15); | |
| padding: 0.8rem; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.5rem; | |
| } | |
| .empty-state-notice { | |
| text-align: center; | |
| color: var(--color-text-muted); | |
| font-size: 0.8rem; | |
| margin-top: 4rem; | |
| } | |
| .expired-item-card { | |
| padding: 0.75rem 1rem; | |
| border-radius: 8px; | |
| border: 1px solid var(--border-color); | |
| background: rgba(255, 255, 255, 0.01); | |
| font-size: 0.8rem; | |
| } | |
| .expired-item-card h6 { | |
| font-size: 0.85rem; | |
| font-weight: 700; | |
| margin-bottom: 0.15rem; | |
| color: var(--color-cyan); | |
| } | |
| .expired-item-card p { | |
| margin: 0; | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| line-height: 1.4; | |
| } | |
| /* Trend Chart */ | |
| .mock-chart-graphic { | |
| height: 180px; | |
| margin-top: 1rem; | |
| display: flex; | |
| align-items: flex-end; | |
| } | |
| .bar-chart-visual { | |
| display: flex; | |
| justify-content: space-around; | |
| align-items: flex-end; | |
| width: 100%; | |
| height: 100%; | |
| padding-bottom: 1.5rem; | |
| border-bottom: 1px solid var(--border-color); | |
| } | |
| .bar-col { | |
| width: 38px; | |
| height: var(--val); | |
| background: rgba(124, 58, 237, 0.2); | |
| border-radius: 6px 6px 0 0; | |
| position: relative; | |
| border: 1px solid rgba(124, 58, 237, 0.3); | |
| transition: var(--transition-smooth); | |
| } | |
| .bar-col span { | |
| position: absolute; | |
| bottom: -1.5rem; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| font-size: 0.7rem; | |
| color: var(--color-text-muted); | |
| } | |
| .bar-col::before { | |
| content: attr(style); | |
| content: var(--val); | |
| position: absolute; | |
| top: -1.25rem; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| font-size: 0.65rem; | |
| font-weight: 700; | |
| color: var(--color-purple); | |
| } | |
| .bar-col.active-bar { | |
| background: var(--primary-gradient); | |
| border-color: var(--color-purple); | |
| box-shadow: 0 0 10px rgba(124, 58, 237, 0.4); | |
| } | |
| .template-item { | |
| padding: 1rem; | |
| border-radius: 10px; | |
| margin-bottom: 0.6rem; | |
| cursor: pointer; | |
| } | |
| .template-item.active-template { | |
| border-color: var(--color-blue); | |
| background: rgba(59, 130, 246, 0.05); | |
| } | |
| .template-item h5 { | |
| font-size: 0.88rem; | |
| font-weight: 700; | |
| margin-bottom: 0.2rem; | |
| } | |
| .template-item p { | |
| margin: 0; | |
| font-size: 0.75rem; | |
| } | |
| /* API Config style status */ | |
| .settings-status-box { | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| padding: 0.65rem 1rem; | |
| border-radius: 8px; | |
| font-size: 0.8rem; | |
| font-weight: 600; | |
| margin-bottom: 1.25rem; | |
| } | |
| .badge-mock { | |
| color: var(--color-yellow); | |
| background: rgba(217, 119, 6, 0.1); | |
| padding: 0.15rem 0.4rem; | |
| border-radius: 4px; | |
| } | |
| .badge-real { | |
| color: var(--color-green); | |
| background: rgba(5, 150, 105, 0.1); | |
| padding: 0.15rem 0.4rem; | |
| border-radius: 4px; | |
| } | |
| /* Alerts List */ | |
| .alerts-feed-wrapper { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.8rem; | |
| } | |
| .alert-feed-card { | |
| padding: 1rem; | |
| border-radius: 12px; | |
| } | |
| .alert-feed-header { | |
| display: flex; | |
| justify-content: space-between; | |
| font-size: 0.72rem; | |
| margin-bottom: 0.5rem; | |
| } | |
| .alert-feed-title { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.4rem; | |
| font-size: 0.85rem; | |
| } | |
| .alert-feed-message { | |
| font-size: 0.8rem; | |
| line-height: 1.5; | |
| color: var(--color-text-main); | |
| margin-bottom: 0.75rem; | |
| } | |
| .alert-feed-footer { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| font-size: 0.72rem; | |
| border-top: 1px dashed var(--border-color); | |
| padding-top: 0.65rem; | |
| } | |
| .btn-radar-revaluate { | |
| background: transparent; | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-main); | |
| padding: 0.25rem 0.5rem; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| font-size: 0.7rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-radar-revaluate:hover { | |
| background: var(--color-blue); | |
| color: white; | |
| } | |
| /* Toast Container */ | |
| .toast-container { | |
| position: fixed; | |
| bottom: 2rem; | |
| right: 2rem; | |
| z-index: 2000; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.75rem; | |
| pointer-events: none; | |
| } | |
| .toast { | |
| padding: 0.9rem 1.5rem; | |
| border-radius: 12px; | |
| background: rgba(13, 20, 38, 0.9); | |
| backdrop-filter: blur(8px); | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); | |
| color: white; | |
| font-size: 0.85rem; | |
| font-weight: 500; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.6rem; | |
| transform: translateY(20px); | |
| opacity: 0; | |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); | |
| pointer-events: auto; | |
| } | |
| .toast.success { | |
| border-left: 4px solid var(--color-green); | |
| } | |
| .toast.error { | |
| border-left: 4px solid var(--color-rose); | |
| } | |
| .toast.info { | |
| border-left: 4px solid var(--color-blue); | |
| } | |
| .hidden { | |
| display: none ; | |
| } | |
| /* Node tooltip custom style */ | |
| .graph-tooltip { | |
| position: absolute; | |
| background: rgba(15, 23, 42, 0.9); | |
| backdrop-filter: blur(6px); | |
| border: 1px solid rgba(255, 255, 255, 0.15); | |
| color: white; | |
| padding: 0.6rem 0.8rem; | |
| border-radius: 8px; | |
| font-size: 0.75rem; | |
| line-height: 1.4; | |
| pointer-events: none; | |
| z-index: 100; | |
| max-width: 250px; | |
| box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); | |
| } | |
| .node-detail-box { | |
| margin-top: 1rem; | |
| padding: 1rem; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| font-size: 0.78rem; | |
| } | |
| .node-detail-box h4 { | |
| font-size: 0.85rem; | |
| font-weight: 700; | |
| margin-bottom: 0.35rem; | |
| } | |
| .node-detail-box p { | |
| color: var(--color-text-muted); | |
| } | |
| /* --- Institution and Linking Features CSS --- */ | |
| /* Institution Type Toggle Group */ | |
| .institution-type-toggle-group { | |
| display: flex; | |
| background: rgba(255, 255, 255, 0.03); | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| padding: 2px; | |
| margin-right: 12px; | |
| } | |
| .btn-inst-type-toggle { | |
| background: transparent; | |
| border: none; | |
| outline: none; | |
| color: var(--color-text-muted); | |
| font-size: 0.78rem; | |
| font-weight: 500; | |
| padding: 0.35rem 0.75rem; | |
| border-radius: 6px; | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| gap: 4px; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-inst-type-toggle:hover { | |
| color: var(--color-text-main); | |
| } | |
| .btn-inst-type-toggle.active { | |
| background: rgba(16, 185, 129, 0.15); | |
| color: var(--color-green); | |
| border: 1px solid rgba(16, 185, 129, 0.3); | |
| } | |
| /* Tabs for Bottom Panel */ | |
| .panel-tab-group { | |
| display: flex; | |
| gap: 8px; | |
| margin-left: auto; | |
| } | |
| .tab-btn { | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| color: var(--color-text-muted); | |
| font-size: 0.8rem; | |
| font-weight: 600; | |
| padding: 0.45rem 0.9rem; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| transition: var(--transition-smooth); | |
| } | |
| .tab-btn:hover { | |
| color: var(--color-text-main); | |
| background: rgba(255, 255, 255, 0.05); | |
| } | |
| .tab-btn.active { | |
| background: rgba(16, 185, 129, 0.12); | |
| border-color: rgba(16, 185, 129, 0.3); | |
| color: var(--color-green); | |
| } | |
| .badge-count { | |
| font-size: 0.7rem; | |
| font-weight: bold; | |
| padding: 1px 6px; | |
| border-radius: 10px; | |
| background: var(--color-green); | |
| color: var(--color-bg); | |
| } | |
| .tab-content-panel.hidden { | |
| display: none ; | |
| } | |
| .tab-content-panel { | |
| animation: fadeIn 0.3s ease-out; | |
| } | |
| /* Individual Dashboard Linking UI */ | |
| .linking-state-container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 2.5rem 1.5rem; | |
| color: var(--color-text-main); | |
| } | |
| .linking-state-icon { | |
| font-size: 3rem; | |
| color: var(--color-text-muted); | |
| margin-bottom: 1.25rem; | |
| } | |
| .linking-state-icon.spinning { | |
| color: var(--color-blue); | |
| animation: spin 3s linear infinite; | |
| } | |
| .linking-state-title { | |
| font-size: 1.15rem; | |
| font-weight: 700; | |
| margin-bottom: 0.5rem; | |
| font-family: var(--font-outfit); | |
| } | |
| .linking-state-desc { | |
| font-size: 0.85rem; | |
| color: var(--color-text-muted); | |
| max-width: 500px; | |
| margin-bottom: 1.5rem; | |
| line-height: 1.5; | |
| } | |
| .btn-linking-action { | |
| padding: 0.65rem 1.5rem; | |
| border-radius: 10px; | |
| font-weight: 600; | |
| font-size: 0.88rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| border: none; | |
| } | |
| .linking-active-layout { | |
| display: grid; | |
| grid-template-columns: 1fr 2fr; | |
| gap: 1.5rem; | |
| } | |
| .linking-info-card { | |
| padding: 1.25rem; | |
| background: rgba(255, 255, 255, 0.015); | |
| border-right: 1px solid var(--border-color); | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1rem; | |
| } | |
| .linking-info-item { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 4px; | |
| } | |
| .linking-info-label { | |
| font-size: 0.72rem; | |
| text-transform: uppercase; | |
| color: var(--color-text-muted); | |
| letter-spacing: 0.5px; | |
| } | |
| .linking-info-value { | |
| font-size: 0.95rem; | |
| font-weight: 600; | |
| } | |
| .btn-disconnect-inst { | |
| margin-top: auto; | |
| background: rgba(244, 63, 94, 0.1); | |
| color: var(--color-rose); | |
| border: 1px solid rgba(244, 63, 94, 0.2); | |
| border-radius: 8px; | |
| padding: 0.5rem 1rem; | |
| cursor: pointer; | |
| font-size: 0.78rem; | |
| font-weight: 600; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-disconnect-inst:hover { | |
| background: var(--color-rose); | |
| color: white; | |
| } | |
| /* Institution Search Modal */ | |
| .inst-search-card { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding: 0.75rem 1rem; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .inst-search-card:hover { | |
| background: rgba(59, 130, 246, 0.08); | |
| border-color: rgba(59, 130, 246, 0.3); | |
| } | |
| .inst-search-card.selected { | |
| background: rgba(59, 130, 246, 0.15); | |
| border-color: var(--color-blue); | |
| } | |
| .inst-card-info h5 { | |
| font-size: 0.88rem; | |
| font-weight: 600; | |
| color: var(--color-text-main); | |
| } | |
| .inst-card-info p { | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| margin-top: 2px; | |
| } | |
| .inst-badge { | |
| font-size: 0.68rem; | |
| font-weight: bold; | |
| padding: 2px 6px; | |
| border-radius: 4px; | |
| } | |
| .inst-badge.univ { | |
| background: rgba(59, 130, 246, 0.15); | |
| color: var(--color-blue); | |
| } | |
| .inst-badge.ent { | |
| background: rgba(16, 185, 129, 0.15); | |
| color: var(--color-green); | |
| } | |
| /* User management DB actions */ | |
| .btn-row-action { | |
| background: transparent; | |
| border: none; | |
| color: var(--color-text-muted); | |
| cursor: pointer; | |
| font-size: 0.82rem; | |
| padding: 4px; | |
| transition: var(--transition-smooth); | |
| } | |
| .btn-row-action.edit:hover { | |
| color: var(--color-blue); | |
| } | |
| .btn-row-action.delete:hover { | |
| color: var(--color-rose); | |
| } | |
| .btn-row-action.approve { | |
| background: rgba(16, 185, 129, 0.12); | |
| color: var(--color-green); | |
| border: 1px solid rgba(16, 185, 129, 0.2); | |
| font-size: 0.72rem; | |
| font-weight: 600; | |
| padding: 0.25rem 0.5rem; | |
| border-radius: 4px; | |
| } | |
| .btn-row-action.approve:hover { | |
| background: var(--color-green); | |
| color: var(--color-bg); | |
| } | |
| .btn-row-action.reject { | |
| background: rgba(244, 63, 94, 0.12); | |
| color: var(--color-rose); | |
| border: 1px solid rgba(244, 63, 94, 0.2); | |
| font-size: 0.72rem; | |
| font-weight: 600; | |
| padding: 0.25rem 0.5rem; | |
| border-radius: 4px; | |
| } | |
| .btn-row-action.reject:hover { | |
| background: var(--color-rose); | |
| color: white; | |
| } | |
| .join-req-card { | |
| background: rgba(255, 255, 255, 0.015); | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| padding: 0.75rem 1rem; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 8px; | |
| transition: var(--transition-smooth); | |
| } | |
| .join-req-card:hover { | |
| background: rgba(255, 255, 255, 0.03); | |
| } | |
| .join-req-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .join-req-name h5 { | |
| font-size: 0.85rem; | |
| font-weight: bold; | |
| color: var(--color-text-main); | |
| } | |
| .join-req-name p { | |
| font-size: 0.75rem; | |
| color: var(--color-text-muted); | |
| } | |
| .join-req-actions { | |
| display: flex; | |
| gap: 6px; | |
| justify-content: flex-end; | |
| } | |
| @keyframes spin { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |
| /* Fix Light Mode colors for overlays/modals */ | |
| body:not(.dark-mode) .modal-backdrop { | |
| background: rgba(241, 245, 249, 0.88); | |
| backdrop-filter: blur(15px); | |
| -webkit-backdrop-filter: blur(15px); | |
| } | |
| body:not(.dark-mode) .wizard-modal-card, | |
| body:not(.dark-mode) .modal-card { | |
| background: rgba(255, 255, 255, 0.95); | |
| border: 1px solid rgba(15, 23, 42, 0.1); | |
| color: #0f172a; | |
| box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15); | |
| } | |
| body:not(.dark-mode) .wizard-progress-bar-container { | |
| background: rgba(15, 23, 42, 0.03); | |
| } | |
| body:not(.dark-mode) .progress-line-bg { | |
| background: rgba(15, 23, 42, 0.06); | |
| } | |
| body:not(.dark-mode) .progress-step-node .node-dot { | |
| background: #f1f5f9; | |
| border-color: #cbd5e1; | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .progress-step-node.active .node-dot { | |
| background: var(--color-blue); | |
| border-color: var(--color-blue); | |
| color: white ; | |
| } | |
| body:not(.dark-mode) .progress-step-node.active span { | |
| color: #0f172a ; | |
| } | |
| body:not(.dark-mode) .progress-step-node.completed .node-dot { | |
| background: var(--color-green); | |
| border-color: var(--color-green); | |
| color: white ; | |
| } | |
| body:not(.dark-mode) .slide-inner-box { | |
| background: rgba(15, 23, 42, 0.015); | |
| } | |
| body:not(.dark-mode) .wizard-history-item { | |
| background: rgba(15, 23, 42, 0.02); | |
| } | |
| body:not(.dark-mode) .scope-select-card { | |
| background: rgba(15, 23, 42, 0.01); | |
| } | |
| body:not(.dark-mode) .scope-select-card:hover { | |
| background: rgba(15, 23, 42, 0.03); | |
| } | |
| body:not(.dark-mode) .scope-select-card:has(input:checked) { | |
| background: rgba(37, 99, 235, 0.05); | |
| } | |
| body:not(.dark-mode) .plan-checkbox-card { | |
| background: rgba(15, 23, 42, 0.01); | |
| } | |
| body:not(.dark-mode) .plan-checkbox-card:hover { | |
| background: rgba(15, 23, 42, 0.03); | |
| } | |
| body:not(.dark-mode) .plan-checkbox-card:has(input:checked) { | |
| background: rgba(37, 99, 235, 0.05); | |
| border-color: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .base-pat-radio-card { | |
| background: rgba(15, 23, 42, 0.01) ; | |
| } | |
| body:not(.dark-mode) .base-pat-radio-card:hover { | |
| background: rgba(15, 23, 42, 0.03) ; | |
| } | |
| body:not(.dark-mode) .base-pat-radio-card.active { | |
| background: rgba(37, 99, 235, 0.05) ; | |
| border-color: var(--color-blue) ; | |
| } | |
| body:not(.dark-mode) .base-pat-radio-card .pat-title { | |
| color: #0f172a ; | |
| } | |
| body:not(.dark-mode) .wizard-results-grid { | |
| background: transparent; | |
| } | |
| body:not(.dark-mode) .result-sidebar-menu button { | |
| background: rgba(15, 23, 42, 0.02); | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .result-sidebar-menu button:hover { | |
| color: #0f172a; | |
| background: rgba(15, 23, 42, 0.05); | |
| } | |
| body:not(.dark-mode) .result-sidebar-menu button.active { | |
| background: var(--color-blue); | |
| color: white ; | |
| } | |
| body:not(.dark-mode) .bm-mechanics-container { | |
| background: rgba(15, 23, 42, 0.015); | |
| } | |
| body:not(.dark-mode) .mechanic-row { | |
| border-bottom-color: rgba(15, 23, 42, 0.06); | |
| } | |
| body:not(.dark-mode) .inst-search-card { | |
| background: rgba(15, 23, 42, 0.02); | |
| } | |
| body:not(.dark-mode) .inst-search-card:hover { | |
| background: rgba(37, 99, 235, 0.06); | |
| } | |
| body:not(.dark-mode) .inst-search-card.selected { | |
| background: rgba(37, 99, 235, 0.12); | |
| } | |
| body:not(.dark-mode) .btn-inst-type-toggle { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .btn-inst-type-toggle:hover { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .btn-inst-type-toggle.active { | |
| background: rgba(5, 150, 105, 0.12); | |
| color: var(--color-green); | |
| border-color: rgba(5, 150, 105, 0.2); | |
| } | |
| body:not(.dark-mode) .tab-btn { | |
| background: rgba(15, 23, 42, 0.02); | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .tab-btn:hover { | |
| background: rgba(15, 23, 42, 0.05); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .tab-btn.active { | |
| background: rgba(5, 150, 105, 0.1); | |
| color: var(--color-green); | |
| border-color: rgba(5, 150, 105, 0.3); | |
| } | |
| body:not(.dark-mode) .join-req-card { | |
| background: rgba(15, 23, 42, 0.01); | |
| } | |
| body:not(.dark-mode) .join-req-card:hover { | |
| background: rgba(15, 23, 42, 0.03); | |
| } | |
| body:not(.dark-mode) .btn-footer-service-chip { | |
| background: rgba(255, 255, 255, 0.8) ; | |
| border-color: rgba(15, 23, 42, 0.08) ; | |
| color: #0f172a ; | |
| } | |
| body:not(.dark-mode) .btn-footer-service-chip:hover { | |
| background: rgba(255, 255, 255, 0.95) ; | |
| border-color: rgba(37, 99, 235, 0.3) ; | |
| } | |
| body:not(.dark-mode) .wizard-slides-container { | |
| background: transparent; | |
| } | |
| body:not(.dark-mode) .wizard-slide h4 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .wizard-slide p { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .wizard-header h3 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .wizard-footer-nav { | |
| border-top: 1px solid rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .btn-wizard-control:disabled { | |
| background: rgba(15, 23, 42, 0.05); | |
| color: #94a3b8; | |
| } | |
| body:not(.dark-mode) .btn-wizard-control:not(:disabled) { | |
| background: rgba(15, 23, 42, 0.02); | |
| color: #334155; | |
| border: 1px solid rgba(15, 23, 42, 0.1); | |
| } | |
| body:not(.dark-mode) .btn-wizard-control:not(:disabled):hover { | |
| background: rgba(15, 23, 42, 0.05); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .wizard-results-grid { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .result-sidebar-menu { | |
| border-right: 1px solid rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .result-item-card { | |
| background: rgba(15, 23, 42, 0.01); | |
| border: 1px solid rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .result-item-card:hover { | |
| background: rgba(15, 23, 42, 0.03); | |
| } | |
| body:not(.dark-mode) .result-item-card strong { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .result-tab-title { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .action-link-item { | |
| background: rgba(15, 23, 42, 0.01); | |
| border: 1px solid rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .action-link-item:hover { | |
| background: rgba(37, 99, 235, 0.05); | |
| border-color: rgba(37, 99, 235, 0.3); | |
| } | |
| body:not(.dark-mode) .action-link-item .txt h5 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .action-link-item i { | |
| color: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .box-title { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .box-desc { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .institution-select-row label { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .registered-list-hint strong { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .registered-list-hint p { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .dashboard-header h2 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .dashboard-header p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .details-left h3, | |
| body:not(.dark-mode) .details-right h3 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .details-left p, | |
| body:not(.dark-mode) .details-right p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .researcher-item h4 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .researcher-item p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .researcher-item .res-badge { | |
| background: rgba(15, 23, 42, 0.05); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .integration-manager-panel h3 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .integration-manager-panel p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .integration-table th { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .integration-table td { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .btn-signup { | |
| color: var(--color-blue) ; | |
| } | |
| body:not(.dark-mode) .btn-signup:hover { | |
| text-shadow: 0 0 1px rgba(37, 99, 235, 0.3); | |
| } | |
| body:not(.dark-mode) .modal-body { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .settings-intro { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .form-group label { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .settings-status-box { | |
| background: rgba(15, 23, 42, 0.04); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .expired-item-card h6 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .expired-item-card p { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .trend-filters label { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .report-intro { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .template-item h5 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .template-item p { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .template-item.active-template { | |
| border-color: var(--color-green); | |
| background: rgba(5, 150, 105, 0.05); | |
| } | |
| body:not(.dark-mode) .support-modal p { | |
| color: #334155; | |
| } | |
| body:not(.dark-mode) .sidebar-nav a.nav-item { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .sidebar-nav a.nav-item:hover { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .sidebar-nav a.nav-item.active { | |
| color: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .green-sidebar .sidebar-nav a.nav-item.active { | |
| color: var(--color-green); | |
| } | |
| body:not(.dark-mode) .btn-logout { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .btn-logout:hover { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .metric-card .metric-label { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .metric-card .metric-value { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .proposal-feed-item h4 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .proposal-feed-item p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .proposal-feed-item .feed-score strong { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .proposal-feed-item:hover { | |
| background: rgba(15, 23, 42, 0.015); | |
| } | |
| body:not(.dark-mode) .canvas-instructions { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .btn-zoom-action { | |
| background: white; | |
| border-color: rgba(15, 23, 42, 0.1); | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .btn-zoom-action:hover { | |
| background: rgba(15, 23, 42, 0.05); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .welcome-msg h2 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .welcome-msg p { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .db-status-badge { | |
| background: rgba(15, 23, 42, 0.04); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .btn-theme-toggle { | |
| background: rgba(15, 23, 42, 0.04); | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .btn-theme-toggle:hover { | |
| background: rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .logo-txt { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .sidebar { | |
| border-right: 1px solid rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .linking-state-title { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .linking-state-desc { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .linking-info-label { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .linking-info-value { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .linking-info-card { | |
| border-right-color: rgba(15, 23, 42, 0.08); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-item { | |
| color: #475569; | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.my-pat { | |
| background: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.locked { | |
| background: #cbd5e1; | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.unlocked { | |
| background: var(--color-cyan); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.dept { | |
| background: var(--color-green); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.prof-pat { | |
| background: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.std-idea { | |
| background: var(--color-yellow); | |
| } | |
| body:not(.dark-mode) .graph-legend .legend-dot.ext-pat { | |
| background: var(--color-rose); | |
| } | |
| body:not(.dark-mode) .table-container-title { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .table-header-title { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .btn-row-action.edit { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .btn-row-action.edit:hover { | |
| color: var(--color-blue); | |
| } | |
| body:not(.dark-mode) .btn-row-action.delete { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .btn-row-action.delete:hover { | |
| color: var(--color-rose); | |
| } | |
| body:not(.dark-mode) .btn-row-action.approve { | |
| background: rgba(5, 150, 105, 0.08); | |
| color: var(--color-green); | |
| border-color: rgba(5, 150, 105, 0.15); | |
| } | |
| body:not(.dark-mode) .btn-row-action.approve:hover { | |
| background: var(--color-green); | |
| color: white; | |
| } | |
| body:not(.dark-mode) .btn-row-action.reject { | |
| background: rgba(225, 29, 72, 0.08); | |
| color: var(--color-rose); | |
| border-color: rgba(225, 29, 72, 0.15); | |
| } | |
| body:not(.dark-mode) .btn-row-action.reject:hover { | |
| background: var(--color-rose); | |
| color: white; | |
| } | |
| body:not(.dark-mode) .join-req-name h5 { | |
| color: #0f172a; | |
| } | |
| body:not(.dark-mode) .join-req-name p { | |
| color: #64748b; | |
| } | |
| body:not(.dark-mode) .members-db-container h4, | |
| body:not(.dark-mode) .member-requests-container h4 { | |
| color: #0f172a ; | |
| } | |
| body:not(.dark-mode) .member-requests-container { | |
| border-left-color: rgba(15, 23, 42, 0.08) ; | |
| } | |