body { font-family: sans-serif; background: #121212; color: #eee; margin: 0; }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.login-container { margin: auto; background: #1e1e1e; padding: 40px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
header { background: #1e1e1e; padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid #333; }
main { max-width: 1200px; margin: 0 auto; padding: 20px; width: 100%; }
.tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.tab-btn { padding: 10px 20px; background: #333; color: #fff; border: none; cursor: pointer; transition: 0.2s; }
.tab-btn.active { background: #667eea; }
.phase { background: #1e1e1e; padding: 20px; border-radius: 8px; display: none; }
.phase.active { display: block; }
.files-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14px; }
.files-table th, .files-table td { padding: 12px; text-align: left; border-bottom: 1px solid #333; }
.path-input { width: 100%; background: #2d2d2d; color: #0f0; border: 1px solid #444; padding: 8px; font-family: monospace; border-radius: 4px; }
button {
	padding: 10px 18px;
	border-radius: 8px;
	cursor: pointer;
	color: #ffffff;
	background: #2b2f36;
	border: 1px solid rgba(255,255,255,0.06);
	font-weight: 700;
	font-size: 15px;
	transition: transform .08s ease, background .12s ease, box-shadow .12s ease, opacity .12s ease;
	box-shadow: 0 3px 10px rgba(0,0,0,0.6);
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
button:hover { transform: translateY(-1px); opacity: 0.98; }
button:active { transform: translateY(0); }
button:focus { outline: none; box-shadow: 0 0 0 4px rgba(102,110,255,0.18); }

/* Action classes */
.btn-primary, .btn-ai { background: #4c6ef5; border-color: rgba(0,0,0,0.25); }
.btn-primary:hover, .btn-ai:hover { background: #3b57d6; }

.btn-danger { background: #e74c3c; border-color: rgba(0,0,0,0.18); }
.btn-danger:hover { background: #cc3a2d; }

.btn-secondary, .btn-refresh { background: #4a4f56; border-color: rgba(0,0,0,0.12); }
.btn-secondary:hover, .btn-refresh:hover { filter: brightness(0.95); }

/* Specific actions */
.btn-move { background: #2f855a; border-color: rgba(0,0,0,0.18); }
.btn-move:hover { filter: brightness(0.95); }

.btn-manual { background: #6b7280; border-color: rgba(0,0,0,0.12); }
.btn-manual:hover { filter: brightness(0.95); }

/* Ensure header buttons are readable */
header button { font-size: 14px; padding: 8px 12px; }

.status { padding: 15px; border-radius: 4px; margin: 10px 0; background: #2c3e50; border-left: 4px solid #667eea; }
.logs-content { background: #000; color: #0f0; padding: 15px; max-height: 500px; overflow-y: auto; font-family: monospace; font-size: 12px; }