:root {
    /* Semantic Theme Variables - Injected dynamically by Blade */
    --theme-bg-light: #f8f9fa;
    --theme-bg-card: #ffffff;
    --theme-text-dark: #212529;
    --theme-text-light: #6c757d;
    --theme-primary: #0d6efd;
    --theme-secondary: #6c757d;
    --theme-border: #dee2e6;
}

body {
    background-color: var(--theme-bg-light);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--theme-text-dark);
}

.bg-theme-card { background-color: var(--theme-bg-card); }
.bg-theme-primary { background-color: var(--theme-primary); color: white; }
.bg-theme-secondary { background-color: var(--theme-secondary); color: white; }
.text-theme-dark { color: var(--theme-text-dark); }
.text-theme-primary { color: var(--theme-primary); }
.text-theme-secondary { color: var(--theme-secondary); }
.border-theme { border-color: var(--theme-border) !important; }

.shadow-hover-up {
    transition: all 0.3s ease;
}
.shadow-hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--theme-border);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay colors injected via blade */
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}

.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 1.5rem !important; }

.material-icons {
    vertical-align: middle;
}

.org-chart-node {
    background-color: var(--theme-bg-card);
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 2;
}
.org-chart-node img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme-bg-light);
    margin-bottom: 1rem;
}
.org-chart-connector {
    width: 2px;
    background-color: var(--theme-primary);
    margin: 0 auto;
    height: 40px;
    position: relative;
    z-index: 1;
}
.org-line-horizontal {
    height: 2px;
    background-color: var(--theme-primary);
    width: 100%;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}
