/* 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; }