html, body { margin: 0; padding: 0; height: 100%; width: 100%; background-color: #121212; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; display: flex; overflow: hidden; color: #e0e0e0; }

/* Fix nulových rozmerov kontajnera mapy vo flexboxe */
#map { flex: 1; height: 100vh; min-height: 100%; position: relative; background: #121212; }
#sidebar { width: 400px; min-width: 350px; max-width: 500px; height: 100vh; background: #1e1e1e; border-left: 2px solid #2d2d2d; display: flex; flex-direction: column; box-sizing: border-box; }

/* Menu záložiek */
.sidebar-tabs { display: flex; background: #181818; border-bottom: 2px solid #2d2d2d; flex-shrink: 0; }
.tab-btn { flex: 1; padding: 14px; background: none; border: none; color: #888; font-weight: bold; cursor: pointer; text-align: center; font-size: 13px; transition: all 0.2s; border-bottom: 2px solid transparent; }
.tab-btn:hover { color: #ddd; background: #222; }
.tab-btn.active { color: #ffc107; border-bottom: 2px solid #ffc107; background: #1e1e1e; }

/* Obsah panelu */
.tab-content { flex: 1; padding: 20px; overflow-y: auto; display: none; box-sizing: border-box; }
.tab-content.active { display: block; }

/* RPG Karty a Formuláre */
.rpg-card { background: #252526; border: 1px solid #3e3e42; border-radius: 6px; padding: 15px; margin-bottom: 15px; box-shadow: 0 4px 8px rgba(0,0,0,0.4); }
.rpg-card h3 { margin-top: 0; margin-bottom: 12px; color: #ffc107; border-bottom: 1px solid #3e3e42; padding-bottom: 6px; font-size: 16px; }

label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: bold; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
input, textarea, select { width: 100%; padding: 10px; margin-bottom: 12px; background: #121212; border: 1px solid #3e3e42; color: #fff; border-radius: 4px; box-sizing: border-box; font-size: 13px; }
input:focus, textarea:focus, select:focus { border-color: #ffc107; outline: none; }

button.btn-rpg { background: #28a745; color: white; border: 0; padding: 10px 14px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; font-size: 13px; }
button.btn-rpg:hover { background: #218838; }

.btn-group { display: flex; gap: 8px; margin-top: 15px; }
button.btn-rpg-del { background: #dc3545; color: white; border: 0; padding: 6px 12px; font-weight: bold; border-radius: 4px; cursor: pointer; font-size: 12px; flex: 1; }
button.btn-rpg-edit { background: #ffc107; color: black; border: 0; padding: 6px 12px; font-weight: bold; border-radius: 4px; cursor: pointer; font-size: 12px; flex: 1; }

/* Mapové ovládacie prvky */
.leaflet-control-custom { background: #252526; padding: 10px 14px; border: 1px solid #3e3e42; border-radius: 4px; cursor: pointer; font-weight: bold; font-size: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.5); margin-bottom: 6px; display: block; color: #fff; }
.leaflet-control-custom.active { background: #ffc107; color: #000; border-color: #ffc107; }
.leaflet-control-custom.active-road { background: #17a2b8; color: white; border-color: #17a2b8; }
.login-control { background: #2d2d30; color: #ffc107; border-color: #ffc107; }
.login-control.logged-in { background: #dc3545; color: #fff; border-color: #dc3545; }

/* RPG Tokeny na mape */
.rpg-marker-token { display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 8px rgba(0,0,0,0.6); border: 2px solid #fff; border-radius: 50%; color: #fff; font-size: 14px; }
.rpg-marker-token:hover { transform: scale(1.15); z-index: 1000 !important; }

/* Wiki prepojenia v texte */
.rpg-wiki-link { background: rgba(23, 162, 184, 0.15); color: #17a2b8; padding: 2px 6px; border-radius: 3px; font-weight: bold; cursor: pointer; border: 1px solid rgba(23, 162, 184, 0.3); display: inline-block; margin: 1px 0; }
.rpg-wiki-link:hover { background: rgba(23, 162, 184, 0.3); color: #22dafa; }
