File size: 1,685 Bytes
101913b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b7a535c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101913b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6a1e884
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
/* Estilos personalizados para RoboCopy */
.robocopy-title {
    color: #4ECDC4 !important;  /* Color turquesa con !important para forzar el estilo */
    font-weight: bold;
    font-size: 2em;  /* Tamaño más grande para destacar */
}

/* Estilos para los botones de ejemplo */
.stButton > button {
    width: 100%;
    min-height: 80px;
    white-space: normal;
    padding: 10px;
    background-color: #2C3E50;
    border: 1px solid #4ECDC4;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    text-align: left;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.stButton > button:hover {
    background-color: #4ECDC4;
    color: #2C3E50;
    border-color: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sidebar estilo tipo lista de chats (más similar a ChatGPT) */
section[data-testid="stSidebar"] .stButton > button {
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    margin: 2px 0;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

section[data-testid="stSidebar"] .stButton > button:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
    transform: none;
    box-shadow: none;
}

/* Ajustes para el contenedor principal */
.main .block-container {
    padding-top: 2rem;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para títulos más compactos */
h1 {
    font-size: 24px !important;
    margin-bottom: 0.5rem !important;
    color: #2C3E50;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 1rem;
}