Spaces:
Paused
Paused
File size: 2,384 Bytes
434925e 2a5b0bc 434925e c830ced 434925e 9c0260f 75ccf1e c830ced 75ccf1e 9c0260f 2a5b0bc 75ccf1e 434925e |
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 153 154 155 156 157 158 159 160 161 162 163 164 165 |
.realtime-chat-container {
max-width: 800px;
margin: 20px auto;
height: 80vh;
display: flex;
flex-direction: column;
position: relative;
}
mat-card-header {
position: relative;
.close-button {
position: absolute;
top: 8px;
right: 8px;
}
}
.error-banner {
background-color: #ffebee;
color: #c62828;
padding: 12px;
border-radius: 4px;
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 16px;
mat-icon {
font-size: 20px;
width: 20px;
height: 20px;
}
span {
flex: 1;
}
}
.chat-messages {
flex: 1;
overflow-y: auto;
padding: 16px;
background: #fafafa;
border-radius: 8px;
min-height: 300px;
max-height: 450px;
}
.message {
display: flex;
align-items: flex-start;
margin-bottom: 16px;
animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.message.user {
flex-direction: row-reverse;
}
.message.system {
justify-content: center;
.message-content {
background: #e0e0e0;
font-style: italic;
max-width: 80%;
}
}
.message-icon {
margin: 0 8px;
color: #666;
}
.message-content {
max-width: 70%;
background: white;
padding: 12px 16px;
border-radius: 12px;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
position: relative;
}
.message.user .message-content {
background: #3f51b5;
color: white;
}
.message-text {
margin-bottom: 4px;
}
.message-time {
font-size: 11px;
opacity: 0.7;
}
.audio-button {
margin-top: 8px;
}
.empty-state {
text-align: center;
padding: 60px 20px;
color: #999;
mat-icon {
font-size: 48px;
width: 48px;
height: 48px;
margin-bottom: 16px;
}
}
.audio-visualizer {
width: 100%;
height: 100px;
background: #212121;
border-radius: 8px;
margin-top: 16px;
opacity: 0.3;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
&.active {
opacity: 1;
background: #1a1a1a;
box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}
}
mat-chip {
font-size: 12px;
}
mat-chip.active {
background-color: #3f51b5 !important;
color: white !important;
}
mat-card-actions {
padding: 16px;
display: flex;
gap: 16px;
justify-content: flex-start;
mat-spinner {
display: inline-block;
margin-right: 8px;
}
} |