/* ============================================================
   SHADOWSKINGS — ARMY OVERVIEW PANEL
   ============================================================ */

.army-panel {
    padding: 20px;
    color: #e5e7eb;
    font-family: "Cinzel", serif;
}

.army-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.army-header h2 {
    margin: 0;
    color: #bfdbfe;
    font-size: 22px;
}

.army-refresh-btn {
    background: #1f2937;
    border: 1px solid #60a5fa;
    color: #e5e7eb;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.15s;
    font-size: 13px;
}

.army-refresh-btn:hover {
    background: #111827;
    transform: translateY(-1px);
}

.army-section {
    margin-top: 22px;
}

.army-section h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #93c5fd;
}

.army-box {
    background: #020617;
    border: 1px solid #1d4ed8;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 8px;
}

.army-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.army-stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 2px 0;
}

.army-stat-label {
    color: #9ca3af;
}

.army-stat-value {
    color: #e5e7eb;
}

.army-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 11px;
    margin-left: 6px;
    background: #111827;
    border: 1px solid #374151;
    color: #9ca3af;
}

.army-missions-list {
    max-height: 260px;
    overflow-y: auto;
}

.army-mission-entry {
    border-bottom: 1px solid #111827;
    padding: 6px 0;
    font-size: 13px;
}

.army-mission-entry:last-child {
    border-bottom: none;
}

.army-mission-title {
    color: #e5e7eb;
}

.army-mission-meta {
    color: #9ca3af;
    font-size: 12px;
}

.army-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.army-actions button {
    background: #111827;
    border: 1px solid #4b5563;
    color: #e5e7eb;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.15s;
}

.army-actions button:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.army-empty {
    font-size: 13px;
    color: #6b7280;
}
