.unit-links .link-card {
display: inline-block;
text-align: center;
margin: 5px;
padding: 8px 12px;
border-radius: 6px;
background-color: #1E73BE; /* أزرق مخفف */
border: 1px solid #1E73BE;
text-decoration: none;
color: #fff;
font-weight: 700;
font-size: 13px;
white-space: nowrap;
transition: all 0.25s ease;
}
.unit-links .link-card:hover {
background-color: #3F8FD4;
border-color: #3F8FD4;
transform: translateY(-2px);
box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.unit-links {
display: flex;
flex-wrap: wrap;
gap: 5px;
justify-content: flex-start;