/* Unit HQ Map Card Styles */
.unit-hq-card {
    margin-top: 15px;
    padding: 0;
}

.map-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #2c5aa0, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-link:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

.map-link i {
    font-size: 18px;
    margin-right: 10px;
    color: #fbbf24;
}

.map-link span {
    font-weight: 500;
    font-size: 14px;
}

.map-link:hover i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Training Ground Specific Styling */
.map-link.training-ground {
    background: linear-gradient(135deg, #059669, #10b981);
}

.map-link.training-ground:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

.map-link.training-ground i {
    color: #fbbf24;
}