/*
  Copyright (c) 2026 Blue Astra Technologies LLP, India. All Rights Reserved.
  Proprietary software. Unauthorized copying or use by any means or technology
  (including AI tools) is strictly prohibited.
*/
/* =====================================================
   SERVICE TEAM TAB — client detail modal
   One card per role (Asset Manager / Pre-Sales / Sales),
   each showing name, employee ID, email and contact number.
   ===================================================== */

.service-team-intro {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.service-team-card {
    border: 1px solid var(--medium-gray, #e3e8ef);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background: var(--card-bg, #fff);
    border-left: 4px solid var(--primary-blue, #2563eb);
}

.service-team-card.unfilled {
    border-left-color: var(--medium-gray, #d7dde5);
}

.service-team-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.service-team-role {
    font-weight: 700;
    color: var(--primary-blue, #2563eb);
}

.service-team-role i {
    margin-right: 0.4rem;
}

.service-team-title {
    font-size: 0.78rem;
    color: var(--text-light);
}

.service-team-grid {
    display: grid;
    gap: 0.7rem;
}

.service-team-field label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.service-team-field label i {
    margin-right: 0.35rem;
}

.service-team-field p {
    margin: 0;
    font-weight: 600;
    word-break: break-word;
}

.service-team-field p.empty {
    font-weight: 400;
    color: var(--text-light);
}

.service-team-field a {
    color: var(--primary-blue, #2563eb);
    text-decoration: none;
}

.service-team-field a:hover {
    text-decoration: underline;
}

.service-team-stale {
    margin: 0.8rem 0 0;
    font-size: 0.8rem;
    color: #b45309;
}

.service-team-picker {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px dashed var(--medium-gray, #e3e8ef);
}

.service-team-picker label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.service-team-picker select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border: 1px solid var(--medium-gray, #ddd);
    border-radius: 8px;
    background: var(--card-bg, #fff);
    color: inherit;
}

.service-team-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #b45309;
}
