body {
    background-color: #0c0c0e;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.game-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Stil za gornju korisničku traku */
.user-stats-bar {
    background-color: #141416;
    border-bottom: 2px dashed #4a154b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 60px;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    font-size: 24px;
}

.username {
    font-weight: bold;
    color: #fbd38d;
}

.level {
    font-size: 11px;
    color: #a0aec0;
}

/* Mana progres bar */
.progress-bar-container {
    background-color: #2d3748;
    border-radius: 10px;
    width: 150px;
    height: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #4a5568;
}

.progress-bar {
    height: 100%;
}

.mana-bar {
    background: linear-gradient(90deg, #3182ce, #63b3ed);
}

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.range-value {
    color: #68d391;
    font-weight: bold;
}

/* Stil za kartu */
#map-container {
    flex-grow: 1;
    position: relative;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Podnožje */
.game-footer {
    background-color: #141416;
    padding: 5px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 35px;
    box-sizing: border-box;
}

.game-footer select {
    background-color: #2d3748;
    color: #fff;
    border: 1px solid #4a5568;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
}

/* Stilovi za popupe na mapi */
.range-warning {
    color: #f56565;
    font-size: 13px;
    line-height: 1.4;
}

.spell-caster-popup {
    color: #333; /* Tamna slova jer je Leaflet popup bijeli */
    font-family: sans-serif;
    min-width: 180px;
}

.spell-caster-popup h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #4a154b;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.spell-caster-popup p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
}

.spell-caster-popup select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.popup-cast-btn {
    background-color: #4a154b;
    color: #fff;
    border: none;
    padding: 8px 12px;
    width: 100%;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.popup-cast-btn:hover {
    background-color: #631c64;
}