@charset "utf-8";
/* CSS Document */

/* Main Chart Tree Wrapper */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
}
/* Top Horizontal Rows (Rows 1 & 2) */
.row-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}
/* Row 3 Container: Holds the 3 Manager columns side-by-side */
.row-three-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
    flex-wrap: wrap;
}
/* Column Structure: Manager on top, subordinates underneath */
.manager-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 280px;
}
/* Vertical Stack for Subordinates */
.subordinate-vertical-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
/* Horizontal (Row) Stack for Subordinates */
.subordinate-horizontal-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}
/* Base Employee Card Styling */
.card {
    background: #ffffff;
    border-radius: 5px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    width: 175px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
    /*transform: translateY(-3px);*/
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
/* Profile Images */
.avatar {
    width: 80px;
    height: 101px;
    border-radius: 7%;
    object-fit: cover;
    margin-bottom: 14px;
    background-color: #e2e8f0;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
/* Card Text Styling */
.name {
    font-weight: 700;
    color: #000000;
    font-size: .9em;
    line-height: 1.25em;
    display: block;
    margin-bottom: .75em;
}
.title {
    font-size: 0.75em;
    color: #64748b;
    font-weight: 600;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}
/* Tier-Specific Accent Coloring */
.tier-1 {
    border-top: 9px solid #333333;
} /* Blue Accent */
.tier-1A {
    border-top: 7px solid #707070;
} /* Blue Accent */
.tier-1B {
    border-top: 7px solid #848484;
} /* Blue Accent */
.tier-1C {
    border-top: 7px solid #D6D6D6;
} /* Blue Accent */
.tier-2 {
    border-top: 9px solid #2E5F97;
} /* Medium Blue Accent */
.tier-2A {
    border-top: 7px solid #ABBFD5;
} /* Light Blue Accent */
.tier-3 {
    border-top: 7px solid #426FA1;
} /* Green Accent */
.tier-3.card {
    width: 180px;
    padding: 24px 20px;
}
/* Subordinate Card Variant (Compact Row Style) */
.tier-4 {
    border-left: 7px solid #ABBFD5; /* Light Blue Left Accent Line */
    border-top: none;
    /*width: 100%;*/
    width: 355px;
    max-width: 355px;
    display: flex;
    align-items: top;
    text-align: left;
    padding: 12px 16px;
}
.tier-4 .avatar {
    width: 60px;
    height: 76px;
    margin-bottom: 0;
    margin-right: 14px;
}
.tier-4 .text-container {
    display: flex;
    flex-direction: column;
}
.tier-4 .name {
    font-size: 0.9em;
    /*width: 100px;*/
    width: 150px;
}
.tier-4 .title {
    font-size: 0.75rem;
}

.tier-4-board {
    border-left: 7px solid #D6D6D6; /* Light Gray Left Accent Line */
    border-top: none;
    /*width: 100%;*/
    width: 355px;
    max-width: 355px;
    display: flex;
    align-items: top;
    text-align: left;
    padding: 12px 16px;
}
.tier-4-board .avatar {
    width: 60px;
    height: 76px;
    margin-bottom: 0;
    margin-right: 14px;
}
.tier-4-board .text-container {
    display: flex;
    flex-direction: column;
}
.tier-4-board .name {
    font-size: 0.9em;
    /*width: 100px;*/
    width: 150px;
}
.tier-4-board .title {
    font-size: 0.75rem;
}

