Spaces:
Runtime error
Runtime error
File size: 3,069 Bytes
8472119 a9366ba 8472119 a9366ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | .mode-selection-container {
min-height: calc(100vh - 100px);
display: flex;
align-items: center;
background: var(--background-light);
}
.mode-card {
background: var(--card-bg);
border-radius: 1rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
border: 1px solid var(--border-color);
max-width: 600px;
width: 100%;
}
.mode-header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: white;
border-radius: 1rem 1rem 0 0;
padding: 2rem;
text-align: center;
}
.mode-option {
padding: 1.5rem;
margin: 1rem 0;
border: 2px solid var(--border-color);
border-radius: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
background: var(--background-light);
}
.mode-option:hover {
border-color: var(--primary-color);
background: var(--card-bg);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}
.mode-option.selected {
border-color: var(--primary-color);
background: var(--primary-color);
color: white;
}
.mode-option .form-check-input {
display: none;
}
.mode-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.mode-option.selected .mode-icon {
color: white;
}
.mode-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.mode-option.selected .mode-title {
color: white;
}
.mode-description {
color: var(--text-secondary);
margin-bottom: 1rem;
}
.mode-option.selected .mode-description {
color: rgba(255, 255, 255, 0.9);
}
.mode-stats {
font-size: 0.875rem;
color: var(--text-muted);
}
.mode-option.selected .mode-stats {
color: rgba(255, 255, 255, 0.8);
}
.btn-start-chat {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
border: none;
color: white;
font-weight: 600;
padding: 0.75rem 2rem;
border-radius: 0.5rem;
transition: var(--transition);
width: 100%;
}
.btn-start-chat:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
color: white;
}
.selection-area {
max-height: 200px;
overflow-y: auto;
border: 1px solid var(--border-color);
border-radius: 0.5rem;
padding: 0.5rem;
background: white;
}
.document-item, .subject-item {
padding: 0.75rem;
border-radius: 0.375rem;
cursor: pointer;
transition: background-color 0.2s ease;
border: 1px solid transparent;
margin-bottom: 0.25rem;
}
.document-item:hover, .subject-item:hover {
background: var(--background-light);
border-color: var(--border-color);
}
.item-title {
font-weight: 500;
color: var(--text-primary);
}
.item-meta {
font-size: 0.875rem;
color: var(--text-secondary);
}
.empty-state {
text-align: center;
padding: 2rem;
color: var(--text-secondary);
}
.empty-state i {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--text-muted);
}
|