/* Items Master Manage Styles */

.items-content {
    display: flex;
    gap: 0;
}

.items-sidebar {
    width: 25%;
    border-right: 1px solid #ddd;
    background-color: #f9f9f9;
}

.items-main {
    width: 75%;
    padding: 15px;
}

.tree-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 0 15px;
    margin-top: 15px;
}

.items-sidebar .easyui-tree {
    background-color: white;
    border: 1px solid #ddd;
}

.items-manage-container {
    min-height: 400px;
}

@media (max-width: 1024px) {
    .items-sidebar {
        width: 30%;
    }
    .items-main {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .items-content {
        flex-direction: column;
    }
    .items-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .items-main {
        width: 100%;
    }
}
