﻿body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    overflow: auto;
    margin: 0;
}

.tree-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.node {
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    margin: 20px;
    position: relative;
    font-size: 12px;
}

    .node:hover {
        background-color: #0056b3;
    }

.line {
    position: absolute;
    background-color: #007bff;
}

    .line.vertical {
        width: 2px;
        height: 40px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .line.horizontal {
        height: 2px;
        width: 100%;
        top: 50%;
        left: 0;
    }

.level {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

.subordinates {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

    .subordinates::before {
        content: '';
        position: absolute;
        height: 2px;
        background-color: #007bff;
        width: 100%;
        top: 0;
        left: 0;
    }
.custom-logo {
    width: 60px; /* Adjust width as needed */
    height: auto; /* Maintains aspect ratio */
}

.text-custom-dark-red {
    color: #8B0000; /* Dark Red Color */
}

.text-white {
    color: #FFFFFF; /* White Color */
}

.large-bold-text {
    font-weight: bold; /* Makes text bold */
    font-size: 1.5em; /* Increases font size by 50% */
}
/* Adjustments for responsive design */
@media (max-width: 768px) {
    .node {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
}
