/* === Giao diện khung chứa === */ .container-box { border: 1px solid var(--border-color-primary); border-radius: 10px; padding: 20px; background-color: var(--background-fill-primary); margin-bottom: 20px; } /* === Tiêu đề to và rõ === */ h1, h2, h3, label { color: var(--body-text-color); font-weight: bold; font-size: 1.35rem; } /* === Hộp kết quả và danh sách file === */ .output-box ,.scroll-box { background-color: var(--background-fill-primary) !important; color: var(--body-text-color) !important; border: 2px dashed var(--border-color-primary, #ccc) !important; /* #ccc là giá trị dự phòng */ border-radius: 10px !important; padding: 18px !important; font-size: 1.1rem !important; } /* === Thanh tải giả định (vòng tròn chờ) cho output nếu muốn thêm bằng js sau này === */ .output-box::after { content: ""; display: none; /* Khi cần loading thì display: block */ position: absolute; top: 10px; right: 20px; border: 4px solid #f3f3f3; border-top: 4px solid #1e88e5; border-radius: 50%; width: 20px; height: 20px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* === Nút hành động === */ .button-primary { background-color: #1e88e5 !important; color: white !important; border-radius: 8px !important; font-size: 1.05rem !important; } .button-primary:hover { background-color: #1565c0 !important; } .button-secondary { background-color: #ef5350 !important; color: white !important; border-radius: 8px !important; font-size: 1.05rem !important; } .button-secondary:hover { background-color: #c62828 !important; } /* === Input / dropdown đẹp hơn === */ gradio-textbox, gradio-dropdown, gradio-slider { background-color: var(--background-fill-primary) !important; color: var(--body-text-color) !important; font-size: 1.05rem !important; } /* === Scrollbar custom cho danh sách === */ .scroll-box::-webkit-scrollbar { width: 6px; } .scroll-box::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; } .scroll-box::-webkit-scrollbar-thumb:hover { background: #555; }