* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Arial, sans-serif; }
body { background-color: #0b0f19; color: #f1f5f9; min-height: 100vh; }

/* Centrowanie na stronie głównej (index.html) */
.login-wrapper { display: flex; justify-content: center; align-items: center; height: 100vh; }
.login-box { background: #161e2e; border: 1px solid #2d3748; padding: 2.5rem; border-radius: 12px; text-align: center; width: 360px; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.login-box h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.login-box p { color: #a0aec0; font-size: 0.9rem; margin-bottom: 1.5rem; }

/* Nagłówek i kontener na podstronach */
header { background: #161e2e; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d3748; }
.container { max-width: 1100px; margin: 2rem auto; padding: 0 1rem; }

/* Grid botów z kwadratowymi ikonami */
.bot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.5rem; }
.bot-card { background: #161e2e; border: 1px solid #2d3748; border-radius: 12px; padding: 1.2rem; text-align: center; text-decoration: none; color: white; transition: 0.2s; }
.bot-card:hover { border-color: #5865f2; transform: translateY(-3px); }
.bot-card img { width: 100px; height: 100px; border-radius: 12px; object-fit: cover; margin-bottom: 0.8rem; }

/* Paski akcji, statystyk i konsoli */
.stats { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.stat-box { background: #161e2e; border: 1px solid #2d3748; padding: 1rem; border-radius: 8px; flex: 1; }
.stat-box h4 { color: #a0aec0; font-size: 0.8rem; }
.stat-box p { font-size: 1.4rem; font-weight: bold; color: #38bdf8; margin-top: 0.2rem; }

.actions { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.console { background: #000; color: #00ff66; padding: 1rem; height: 350px; overflow-y: auto; font-family: monospace; border-radius: 8px; white-space: pre-wrap; }

/* Przyciski */
.btn { padding: 0.6rem 1.2rem; border-radius: 6px; border: none; font-weight: bold; cursor: pointer; text-decoration: none; color: white; display: inline-block; }
.btn-dc { background: #5865f2; width: 100%; }
.btn-start { background: #16a34a; }
.btn-stop { background: #dc2626; }
.btn-restart { background: #ca8a04; }
.btn-files { background: #2563eb; }
.btn-admin { background: #9333ea; }
.btn-back { background: #475569; }

/* Modal z permisjami */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; justify-content: center; align-items: center; }
.modal-body { background: #161e2e; padding: 2rem; border-radius: 12px; width: 380px; border: 1px solid #2d3748; }
.hidden { display: none !important; }