﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.level {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin: 30px 0;
    position: relative;
}

.box {
    position: relative;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 330px;
    height: 330px;
}

    .box img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin-bottom: 10px;
        object-fit: cover;
        border: 3px solid #ccc;
    }

.name {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.role {
    font-size: 16px;
    color: #666;
}

.line {
    position: absolute;
    background-color: #666;
}

    .line.vertical {
        width: 2px;
        height: 40px;
    }

    .line.horizontal {
        height: 2px;
        width: 60px;
    }

    .line.vertical::after {
        content: '';
        position: absolute;
        left: -6px;
        bottom: -10px;
        border-style: solid;
        border-width: 8px;
        border-color: #666 transparent transparent transparent;
    }


.main-content {
    background-color: #f2f2f2 !important;
    font-family: 'Poppins' !important;
}

.card {
    border: var(--bs-card-border-width) solid #9ACD66 !important;
    padding: 2rem !important;
    margin: 90px 20px !important;
    border-radius: 1.2rem;
}

.card-body h1 {
    font-size: 2rem;
    padding: 1rem 0;
    font-weight: normal;
    color: #0077C8;
}

.card-body label {
    font-weight: 500 !important;
    padding: .375rem 0.25rem .375rem .75rem !important;
    margin-bottom: 0 !important;
}

h2 {
    font-size: 2rem !important;
    color: #0175C0 !important;
    padding: 1rem 0 !important;
}

.card-header {
    background-color: transparent !important;
}

.bolge-alt-cizgi {
    max-width: 100% !important;
    height: 1px !important;
    background-color: #9ACD66 !important;
    margin: 0 auto 50px auto !important;
}


