File size: 863 Bytes
f74654d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Terminal Toast */
.toast-terminal {
    min-width: 400px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(15, 23, 42, 0.95);
}

.terminal-window {
    width: 100%;
    height: 200px;
    background: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 6px;
    overflow-y: auto;
    border: 1px solid #333;
    white-space: pre-wrap;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.terminal-window::-webkit-scrollbar {
    width: 8px;
}

.terminal-window::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.terminal-header {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}