/* Company Tag Icons Styling */

.tag-icon {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2em;
    vertical-align: middle;
    cursor: help;
}

/* Pipeline tag - gold star */
.tag-pipeline {
    color: #FFD700;
    font-size: 1.3em;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

/* Client tag - thick green C */
.tag-client {
    background-color: #28a745;
    color: white;
    font-weight: 900;
    font-size: 1.1em;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

/* LGPS tag - blue shield */
.tag-lgps {
    color: #007bff;
    font-size: 1.2em;
    filter: drop-shadow(0 0 2px rgba(0, 123, 255, 0.3));
}

/* In-house tag - purple house */
.tag-inhouse {
    color: #6f42c1;
    font-size: 1.2em;
    filter: drop-shadow(0 0 2px rgba(111, 66, 193, 0.3));
}

/* Hover effects */
.tag-icon:hover {
    transform: scale(1.15);
    transition: transform 0.2s ease;
}

/* Tag container in card titles */
.card-title .tag-icon {
    margin-left: 6px;
}

/* Responsive sizing for smaller screens */
@media (max-width: 768px) {
    .tag-icon {
        font-size: 1em;
        margin-left: 6px;
    }
    
    .tag-client {
        font-size: 0.95em;
        padding: 1px 6px;
    }
}
