/* Organizasyon Ağacı Stilleri */
.org-tree {
    padding: 20px;
}

.org-node {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.org-node:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.org-node-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.org-node-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.org-merkez .org-node-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.org-depo .org-node-icon {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #fff;
}

.org-sube .org-node-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
}

.org-node-info h5,
.org-node-info h6 {
    margin-bottom: 5px;
}

.org-children {
    margin-left: 40px;
    padding-left: 30px;
    border-left: 2px dashed #dee2e6;
}

.org-branch {
    position: relative;
    padding-top: 15px;
}

.org-branch::before {
    content: '';
    position: absolute;
    top: 35px;
    left: -30px;
    width: 28px;
    height: 2px;
    background: #dee2e6;
}

.org-sub-children {
    margin-left: 60px;
    padding-left: 30px;
    border-left: 2px dashed #dee2e6;
}

.org-sub-children .org-node {
    position: relative;
}

.org-sub-children .org-node::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 28px;
    height: 2px;
    background: #dee2e6;
}

/* İstatistik Kartları */
.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.bg-primary-light {
    background: rgba(102, 126, 234, 0.1);
}

.bg-success-light {
    background: rgba(40, 199, 111, 0.1);
}

.bg-info-light {
    background: rgba(0, 207, 232, 0.1);
}

.bg-warning-light {
    background: rgba(255, 159, 67, 0.1);
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
}

.section-toggle {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.section-toggle-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.section-toggle-summary::-webkit-details-marker {
    display: none;
}

.section-toggle-summary::after {
    content: "▾";
    font-size: 14px;
    color: #6b7280;
}

.section-toggle[open] .section-toggle-summary::after {
    content: "▴";
}

.section-toggle-hint {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

.section-toggle-body {
    padding: 16px 18px 18px 18px;
    border-top: 1px solid #f3f4f6;
}

@media (max-width: 768px) {
    .org-children {
        margin-left: 20px;
        padding-left: 15px;
    }
    
    .org-sub-children {
        margin-left: 30px;
        padding-left: 15px;
    }
}
